summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/libnpmhook/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/libnpmhook/config.js')
-rw-r--r--deps/npm/node_modules/libnpmhook/config.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/deps/npm/node_modules/libnpmhook/config.js b/deps/npm/node_modules/libnpmhook/config.js
new file mode 100644
index 0000000000..864e1ede6a
--- /dev/null
+++ b/deps/npm/node_modules/libnpmhook/config.js
@@ -0,0 +1,13 @@
+'use strict'
+
+const pudding = require('figgy-pudding')
+
+const NpmHooksConfig = pudding()
+
+module.exports = config
+function config (opts) {
+ return NpmHooksConfig.apply(
+ null,
+ [opts, opts.config].concat([].slice.call(arguments, 1))
+ )
+}