1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
This commit is contained in:
Ryan Dahl 2018-05-29 05:27:27 -04:00
parent 4936a4e5c2
commit 47cfde452d

View file

@ -19,7 +19,9 @@ let startCalled = false;
// denoMain is needed to allow hooks into the system. // denoMain is needed to allow hooks into the system.
// Also eventual snapshot support needs it. // Also eventual snapshot support needs it.
// tslint:disable-next-line:no-any
(window as any)["denoMain"] = () => { (window as any)["denoMain"] = () => {
// tslint:disable-next-line:no-any
delete (window as any)["denoMain"]; delete (window as any)["denoMain"];
initTimers(); initTimers();