mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 01:44:26 -05:00
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
![]() |
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
|
||
|
((window) => {
|
||
|
const dispatchJson = window.__bootstrap.dispatchJson;
|
||
|
|
||
|
function opNow() {
|
||
|
return dispatchJson.sendSync("op_now");
|
||
|
}
|
||
|
|
||
|
window.__bootstrap.timers = { opNow };
|
||
|
})(this);
|