debugging-aid
Version:
Experimental tools for debugging Node.js apps without pausing
16 lines (13 loc) • 333 B
JavaScript
const notSoSlow = (cb) => {
'let\'s take some time but not too much'.repeat(100).split('').join(':)')
cb && cb()
}
module.exports = function start () {
Promise.resolve(1)
.then(_ => new Promise((resolve) => {
setTimeout(notSoSlow, 3)
notSoSlow(notSoSlow)
setTimeout(resolve, 100)
}))
}