Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/internal/util.js')
-rw-r--r--lib/internal/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/internal/util.js b/lib/internal/util.js
index 76d3fd91223..4f74f912936 100644
--- a/lib/internal/util.js
+++ b/lib/internal/util.js
@@ -453,7 +453,7 @@ function once(callback) {
return function(...args) {
if (called) return;
called = true;
- ReflectApply(callback, this, args);
+ return ReflectApply(callback, this, args);
};
}