shithub: mycel

ref: 8b6f2304278271517909d2a699a8e62b50c5968e
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;