Skip to content

Instantly share code, notes, and snippets.

@cziem
Last active September 21, 2019 11:43
Show Gist options
  • Save cziem/5f0a7df1d0ef99b502c0f908343135f0 to your computer and use it in GitHub Desktop.
Save cziem/5f0a7df1d0ef99b502c0f908343135f0 to your computer and use it in GitHub Desktop.
The scheduler fuction
const scheduler = (timer, action) => {
setInterval(action, timer)
}
process.nextTick(() => scheduler);
module.exports = scheduler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment