shithub: opossum

ref: 4c8c0104cf491d9d9ccdc9f7d020507fe37c26bd
dir: opossum/domino-lib/WindowTimers.js

View raw version
"use strict";

// https://html.spec.whatwg.org/multipage/webappapis.html#windowtimers
var WindowTimers = {
  setTimeout: setTimeout,
  clearTimeout: clearTimeout,
  setInterval: setInterval,
  clearInterval: clearInterval
};

module.exports = WindowTimers;