Files
ObsidianPad/node_modules/@mixmark-io/domino/lib/WindowTimers.js
T

12 lines
257 B
JavaScript
Raw Normal View History

2026-05-31 18:44:04 +08: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;