Skip to content

Commit 94a3871

Browse files
committed
remove deprecation notice trigger
1 parent b21c8c0 commit 94a3871

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,10 @@ module.exports = function nodeExternals(options) {
5858
});
5959

6060
// return an externals function
61-
return function (arg1, arg2, arg3) {
61+
return function () {
62+
var arg1 = arguments[0];
63+
var arg2 = arguments[1];
64+
var arg3 = arguments[2];
6265
var context = arg1;
6366
var request = arg2;
6467
var callback = arg3;

0 commit comments

Comments
 (0)