UNPKG
pure-svg-code
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
generate qrcode & barcode to svg in pure javascript
pure-svg-code
/
svg2url
/
index.js
4 lines
(3 loc)
•
119 B
JavaScript
View Raw
1
2
3
4
module
.
exports
=
function
svg2Url
(
svgString
) {
return
'data:image/svg+xml;utf8,'
+
encodeURIComponent
(svgString); };