deno/cli/tests/034_onload/nest_imported.ts
Ryan Dahl ddcad56ee9
Move deno_std to a more convenient location. (#3057)
js/deps/https/deno.land/std -> js/std
2019-10-04 14:49:32 -04:00

11 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");