Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 2 additions & 23 deletions lib/internal/timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,34 +102,13 @@ Timeout.prototype.refresh = function() {
return this;
};

function setUnrefTimeout(callback, after, arg1, arg2, arg3) {
function setUnrefTimeout(callback, after) {
// Type checking identical to setTimeout()
if (typeof callback !== 'function') {
throw new ERR_INVALID_CALLBACK();
}

let i, args;
switch (arguments.length) {
// fast cases
case 1:
case 2:
break;
case 3:
args = [arg1];
break;
case 4:
args = [arg1, arg2];
break;
default:
args = [arg1, arg2, arg3];
for (i = 5; i < arguments.length; i++) {
// Extend array dynamically, makes .apply run much faster in v6.0.0
args[i - 2] = arguments[i];
}
break;
}

const timer = new Timeout(callback, after, args, false);
const timer = new Timeout(callback, after, undefined, false);
getTimers()._unrefActive(timer);

return timer;
Expand Down
5 changes: 3 additions & 2 deletions lib/timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ function listOnTimeout(list, now) {

try {
const args = timer._timerArgs;
if (!args)
if (args === undefined)
timer._onTimeout();
else
Reflect.apply(timer._onTimeout, timer, args);
Expand Down Expand Up @@ -470,8 +470,9 @@ function setTimeout(callback, after, arg1, arg2, arg3) {
}

setTimeout[internalUtil.promisify.custom] = function(after, value) {
const args = value !== undefined ? [value] : value;
return new Promise((resolve) => {
active(new Timeout(resolve, after, [value], false));
active(new Timeout(resolve, after, args, false));
});
};

Expand Down