@lifaon/rx-js-light
Version:
Blazing fast Observables
15 lines (14 loc) • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.nextTickImplementation = void 0;
var run_task_1 = require("./run-task.cjs");
function nextTickImplementation(process) {
return function (handle) {
process.nextTick(function () {
(0, run_task_1.runTask)(handle);
});
};
}
exports.nextTickImplementation = nextTickImplementation;