We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 097d992 commit f8f81c8Copy full SHA for f8f81c8
lib/internal/timers.js
@@ -362,12 +362,12 @@ function unrefActive(item) {
362
//
363
// Appends a timer onto the end of an existing timers list, or creates a new
364
// list if one does not already exist for the specified timeout duration.
365
-function insertGuarded(item, refed, start) {
+function insertGuarded(item, refed) {
366
const msecs = item._idleTimeout;
367
if (msecs < 0 || msecs === undefined)
368
return;
369
370
- insert(item, msecs, start);
+ insert(item, msecs);
371
372
const isDestroyed = item._destroyed;
373
if (isDestroyed || !item[async_id_symbol]) {
0 commit comments