load(specifier: string): Promise<LoadResponse | undefined>
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.
specifier: string
The string module specifier from the module graph.
Promise<LoadResponse | undefined>