We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c36222 commit a262adaCopy full SHA for a262ada
lib/internal/timers.js
@@ -342,12 +342,12 @@ function unrefActive(item) {
342
//
343
// Appends a timer onto the end of an existing timers list, or creates a new
344
// list if one does not already exist for the specified timeout duration.
345
-function insertGuarded(item, refed, start) {
+function insertGuarded(item, refed) {
346
const msecs = item._idleTimeout;
347
if (msecs < 0 || msecs === undefined)
348
return;
349
350
- insert(item, msecs, start);
+ insert(item, msecs);
351
352
const isDestroyed = item._destroyed;
353
if (isDestroyed || !item[async_id_symbol]) {
0 commit comments