import { readAsDataURL } from "https://deno.land/x/ayonli_jsext@v0.9.72/esm/reader.js";
Reads all data from the given source to a data URL.
Examples
Example 1
Example 1
import { readAsDataURL } from "@ayonli/jsext/reader";
const file = new File(["Hello, World!"], "hello.txt", { type: "text/plain" });
const dataURL = await readAsDataURL(file, file.type);
console.log(dataURL); // data:text/plain;base64,SGVsbG8sIFdvcmxkIQ==