UNPKG

svg-to-url

Version:

A simple tool to convert svg file to data url

6 lines (4 loc) 192 B
import { readFile } from "node:fs/promises"; import stringToUrl from "./string-to-url.js"; export default async (filePath) => stringToUrl()(await readFile(filePath)); export { stringToUrl };