ref: 4de121d2ae73148170b35ff881c4aa97d77cd5dd
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;