summaryrefslogtreecommitdiff
path: root/cli/tests/import_blob_url_imports.ts
blob: 7c2b108654a865d165c978228fd899c9c6e8cf63 (plain)
1
2
3
4
5
6
7
8
9
10
11
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();