fcoin/lib/utils/nexttick.js
Christopher Jeffrey 6875fc99c6
nexttick: minor.
2017-06-26 03:37:11 -07:00

15 lines
330 B
JavaScript

/*!
* nexttick.js - setimmediate for bcoin
* Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).
* https://github.com/bcoin-org/bcoin
*/
'use strict';
module.exports = function nextTick(handler) {
if (typeof handler !== 'function')
throw new Error('callback must be a function.');
setImmediate(handler);
};