urltomarkdown/node_modules/domino/lib/WindowTimers.js

12 lines
257 B
JavaScript
Raw Normal View History

2022-01-08 17:05:05 +00:00
"use strict";
// https://html.spec.whatwg.org/multipage/webappapis.html#windowtimers
var WindowTimers = {
setTimeout: setTimeout,
clearTimeout: clearTimeout,
setInterval: setInterval,
clearInterval: clearInterval
};
module.exports = WindowTimers;