shithub: mycel

ref: ea391fd0eead3ce2ccbfe6594dfc9cf1c6e02b92
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;