root e2ef550dc3 update il y a 2 ans
..
.github e2ef550dc3 update il y a 2 ans
LICENSE e2ef550dc3 update il y a 2 ans
README.md e2ef550dc3 update il y a 2 ans
package.json e2ef550dc3 update il y a 2 ans
process-next-tick.js e2ef550dc3 update il y a 2 ans
queue-microtask.js e2ef550dc3 update il y a 2 ans
test.js e2ef550dc3 update il y a 2 ans

README.md

queue-tick

Next tick shim that prefers process.nextTick over queueMicrotask for compat

npm install queue-tick

Usage

const queueTick = require('queue-tick')

// in Node it uses process.nextTick, in browsers it uses queueMicrotask
queueTick(() => console.log('laters'))

License

MIT