1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/tests/testdata/run/lock_only_http_and_https/main.ts

7 lines
301 B
TypeScript
Raw Normal View History

import "http://127.0.0.1:4545/run/003_relative_import.ts";
import { a } from "data:application/typescript;base64,ZW51bSBBIHsKICBBLAogIEIsCiAgQywKIH0KIAogZXhwb3J0IGZ1bmN0aW9uIGEoKSB7CiAgIHRocm93IG5ldyBFcnJvcihgSGVsbG8gJHtBLkN9YCk7CiB9CiA=";
import { b } from "./b.ts";
console.log(a);
console.log(b);