UNPKG
svg-to-url
Version:
latest (4.0.0)
4.0.0
3.0.0
2.0.0
1.1.0
1.0.2
1.0.1
1.0.0
A simple tool to convert svg file to data url
github.com/zillding/svg-to-url
zillding/svg-to-url
svg-to-url
/
index.js
6 lines
(4 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ readFile }
from
"node:fs/promises"
;
import
stringToUrl
from
"./string-to-url.js"
;
export
default
async
(filePath) =>
stringToUrl
()(
await
readFile
(filePath));
export
{ stringToUrl };