UNPKG

ziko

Version:

a versatile javaScript framework offering a rich set of UI components, advanced mathematical utilities, reactivity, animations, client side routing and graphics capabilities

11 lines 353 B
import { image } from "../../ui" const svg2str=svg=>(new XMLSerializer()).serializeToString(svg); const svg2ascii=svg=>btoa(svg2str(svg)); const svg2imgUrl=svg=>'data:image/svg+xml;base64,'+svg2ascii(svg); const svg2img=(svg,render=true)=>image(svg2imgUrl(svg)).render(render); export{ svg2str, svg2ascii, svg2imgUrl, svg2img }