mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 10:37:52 -05:00
4865ae13e1
Towards #22079 --------- Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
15 lines
330 B
JavaScript
15 lines
330 B
JavaScript
console.log("window is", globalThis.window);
|
|
|
|
try {
|
|
new Deno.FsFile(0);
|
|
} catch (error) {
|
|
if (
|
|
error instanceof TypeError &&
|
|
error.message ===
|
|
"`Deno.FsFile` cannot be constructed, use `Deno.open()` or `Deno.openSync()` instead."
|
|
) {
|
|
console.log("Deno.FsFile constructor is illegal");
|
|
}
|
|
}
|
|
|
|
self.close();
|