fcoin/lib/utils/nexttick.js
2017-02-03 22:47:26 -08:00

10 lines
241 B
JavaScript

/*!
* nexttick.js - setimmediate for bcoin
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcoin
*/
module.exports = typeof setImmediate !== 'function'
? process.nextTick
: setImmediate;