summaryrefslogtreecommitdiff
path: root/cli/tsc/11_timers.js
blob: 59fc0dc76c060dffdb70731a261ddfc11b259c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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);