summaryrefslogtreecommitdiffstats
path: root/node_modules/which-module/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/which-module/index.js')
-rw-r--r--node_modules/which-module/index.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/node_modules/which-module/index.js b/node_modules/which-module/index.js
deleted file mode 100644
index 45559b7..0000000
--- a/node_modules/which-module/index.js
+++ /dev/null
@@ -1,9 +0,0 @@
-'use strict'
-
-module.exports = function whichModule (exported) {
- for (var i = 0, files = Object.keys(require.cache), mod; i < files.length; i++) {
- mod = require.cache[files[i]]
- if (mod.exports === exported) return mod
- }
- return null
-}