aboutsummaryrefslogtreecommitdiff
path: root/src/js/node/timers.js
blob: 221fa181a0aaf8c625f18e398eb0449e3e6ca9d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Hardcoded module "node:timers"
// This implementation isn't 100% correct
// Ref/unref does not impact whether the process is kept alive
export default {
  setTimeout,
  clearTimeout,
  setInterval,
  setImmediate,
  clearInterval,
  clearImmediate,
};