Last active
September 21, 2019 11:43
-
-
Save cziem/5f0a7df1d0ef99b502c0f908343135f0 to your computer and use it in GitHub Desktop.
The scheduler fuction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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