![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/dceprojects.corals.io/node_modules/thunky/ |
var isError = function(err) { // inlined from util so this works in the browser return Object.prototype.toString.call(err) === '[object Error]'; }; var thunky = function(fn) { var run = function(callback) { var stack = [callback]; state = function(callback) { stack.push(callback); }; fn(function(err) { var args = arguments; var apply = function(callback) { if (callback) callback.apply(null, args); }; state = isError(err) ? run : apply; while (stack.length) apply(stack.shift()); }); }; var state = run; return function(callback) { state(callback); }; }; module.exports = thunky;