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