mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
9 lines
272 B
TypeScript
9 lines
272 B
TypeScript
|
import "http://127.0.0.1:4545/cli/tests/053_import_compression/gziped";
|
||
|
import "http://127.0.0.1:4545/cli/tests/053_import_compression/brotli";
|
||
|
|
||
|
console.log(
|
||
|
await fetch(
|
||
|
"http://127.0.0.1:4545/cli/tests/053_import_compression/gziped"
|
||
|
).then(res => res.text())
|
||
|
);
|