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