mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
ddcad56ee9
js/deps/https/deno.land/std -> js/std
10 lines
329 B
TypeScript
10 lines
329 B
TypeScript
import { assert } from "../../../std/testing/asserts.ts";
|
|
|
|
const handler = (e: Event): void => {
|
|
assert(!e.cancelable);
|
|
console.log(`got ${e.type} event in event handler (nest_imported)`);
|
|
};
|
|
|
|
window.addEventListener("load", handler);
|
|
window.addEventListener("unload", handler);
|
|
console.log("log from nest_imported script");
|