From 482b662cb1d698a7b6dae1b31232451893c72b15 Mon Sep 17 00:00:00 2001 From: Kyle Martin Date: Sun, 29 Apr 2018 20:49:06 +1200 Subject: [PATCH] timers: named anonymous functions PR-URL: https://github.com/nodejs/node/pull/20397 Refs: https://github.com/nodejs/node/issues/8913 Reviewed-By: Anatoli Papirovski Reviewed-By: Minwoo Jung Reviewed-By: Ruben Bridgewater Reviewed-By: Benjamin Gruenbaum Reviewed-By: Trivikram Kamat Reviewed-By: Luigi Pinca Reviewed-By: Tiancheng "Timothy" Gu --- lib/timers.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/timers.js b/lib/timers.js index 30bffb432ac26b..e7f13924db7e59 100644 --- a/lib/timers.js +++ b/lib/timers.js @@ -452,7 +452,7 @@ function rearm(timer, start = TimerWrap.now()) { } -const clearTimeout = exports.clearTimeout = function(timer) { +const clearTimeout = exports.clearTimeout = function clearTimeout(timer) { if (timer && timer._onTimeout) { timer._onTimeout = null; if (timer instanceof Timeout) { @@ -464,7 +464,7 @@ const clearTimeout = exports.clearTimeout = function(timer) { }; -exports.setInterval = function(callback, repeat, arg1, arg2, arg3) { +exports.setInterval = function setInterval(callback, repeat, arg1, arg2, arg3) { if (typeof callback !== 'function') { throw new ERR_INVALID_CALLBACK(); } @@ -773,7 +773,7 @@ setImmediate[internalUtil.promisify.custom] = function(value) { exports.setImmediate = setImmediate; -exports.clearImmediate = function(immediate) { +exports.clearImmediate = function clearImmediate(immediate) { if (!immediate || immediate._destroyed) return;