Files
Claude_Code/node_modules/@mixmark-io/domino/lib/WindowTimers.js
2026-03-31 17:51:43 +08:00

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;