mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
10 lines
336 B
TypeScript
10 lines
336 B
TypeScript
import { assert } from "../../../../test_util/std/testing/asserts.ts";
|
|
|
|
const handler = (e: Event) => {
|
|
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");
|