From 363723fc84f7b8477592e0105aeb331ec9a017af Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 14 Aug 2017 05:01:11 +0200 Subject: node_modules --- node_modules/promise/lib/node-extensions.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'node_modules/promise/lib/node-extensions.js') diff --git a/node_modules/promise/lib/node-extensions.js b/node_modules/promise/lib/node-extensions.js index 890ae45dc..157cddc2b 100644 --- a/node_modules/promise/lib/node-extensions.js +++ b/node_modules/promise/lib/node-extensions.js @@ -18,7 +18,7 @@ Promise.denodeify = function (fn, argumentCount) { } else { return denodeifyWithoutCount(fn); } -} +}; var callbackFn = ( 'function (err, res) {' + @@ -113,7 +113,7 @@ Promise.nodeify = function (fn) { } } } -} +}; Promise.prototype.nodeify = function (callback, ctx) { if (typeof callback != 'function') return this; @@ -127,4 +127,4 @@ Promise.prototype.nodeify = function (callback, ctx) { callback.call(ctx, err); }); }); -} +}; -- cgit v1.2.3