mirror of
https://github.com/xuxiaobo-bobo/boda_jsEnv.git
synced 2025-04-22 23:44:23 +08:00
12 lines
257 B
JavaScript
12 lines
257 B
JavaScript
"use strict";
|
|
|
|
// https://html.spec.whatwg.org/multipage/webappapis.html#windowtimers
|
|
var WindowTimers = {
|
|
setTimeout: setTimeout,
|
|
clearTimeout: clearTimeout,
|
|
setInterval: setInterval,
|
|
clearInterval: clearInterval
|
|
};
|
|
|
|
module.exports = WindowTimers;
|