mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
|
const blob = new Blob(
|
||
|
[
|
||
|
'export { printHello } from "http://localhost:4545/cli/tests/subdir/mod2.ts"',
|
||
|
],
|
||
|
{ type: "application/javascript" },
|
||
|
);
|
||
|
const url = URL.createObjectURL(blob);
|
||
|
|
||
|
const { printHello } = await import(url);
|
||
|
|
||
|
printHello();
|