shithub: mycel

ref: 9d68cdc7fb23d4249c24d9e0e15323386edd3366
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;