ref: 3d58c884fa97567ebb1b8b47bc8ceb8c75b2f680
dir: /domino/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;