Skip to content

Commit

Permalink
remove deprecation notice trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
liady committed Aug 24, 2020
1 parent b21c8c0 commit 94a3871
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ module.exports = function nodeExternals(options) {
});

// return an externals function
return function (arg1, arg2, arg3) {
return function () {
var arg1 = arguments[0];
var arg2 = arguments[1];
var arg3 = arguments[2];
var context = arg1;
var request = arg2;
var callback = arg3;
Expand Down

0 comments on commit 94a3871

Please sign in to comment.