Building a Base64 to SVG Decoder for Cricut Projects
I have been building a collection of SVG utilities for iLoveSVG, and one page that ended up being...
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 2248991) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Suhas Sunder Posted on Apr 29 Building a Base64 to SVG Decoder for Cricut Projects #cricut #react #webdev #programming I have been building a collection of SVG utilities for iLoveSVG, and one page that ended up being more interesting than it first sounded was the Base64 to SVG for Cricut tool. At first glance, “Base64 to SVG” sounds like a simple decode operation: Take an encoded string, decode it, and let the user download the result. In practice, it gets messier.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).