shithub: mycel

ref: 4174cee93fafb045b6d561d6c539bb0ff32c26de
dir: /domino/domino-lib/WindowTimers.js/

View raw version
"use strict";

// https://html.spec.whatwg.org/multipage/webappapis.html#windowtimers
var WindowTimers = {
  setTimeout: setTimeout,
  clearTimeout: clearTimeout,
  setInterval: setInterval,
  clearInterval: clearInterval
};

module.exports = WindowTimers;