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