fcoin/lib/utils/nexttick.js
2017-06-26 03:35:21 -07:00

12 lines
239 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) {
setImmediate(handler);
};