UNPKG
svg-to-dataurl
Version:
latest (1.0.0)
1.0.0
😹 convert SVGs to DataURLs
github.com/F1LT3R/svg-to-dataurl
F1LT3R/svg-to-dataurl
svg-to-dataurl
/
index.js
13 lines
(9 loc)
•
248 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
svgToDataURL
= svgStr => {
const
encoded =
encodeURIComponent
(svgStr) .
replace
(
/'/g
,
'%27'
) .
replace
(
/"/g
,
'%22'
)
const
header =
'data:image/svg+xml,'
const
dataUrl = header + encoded
return
dataUrl }
module
.
exports
= svgToDataURL