import { graph } from "https://deno.land/x/cav@0.2.3/deps.ts";
const { load } = graph;
A Deno specific loader function that can be passed to the
createModuleGraph
which will use Deno.readTextFile
for local files, or
use fetch()
for remote modules.
Returns
Promise<LoadResponse | undefined>