ref: b3e2f125064eb5d9950134f5035643c4429dc0d1
dir: /domino-lib/WindowTimers.js/
"use strict";
// https://html.spec.whatwg.org/multipage/webappapis.html#windowtimers
var WindowTimers = {
setTimeout: setTimeout,
clearTimeout: clearTimeout,
setInterval: setInterval,
clearInterval: clearInterval
};
module.exports = WindowTimers;