1
0
CompleteNodeJS/notes-app/node_modules/which-module/index.js
Jason Williams 6528d7204a Section 20
2019-08-11 12:15:16 -06:00

10 lines
248 B
JavaScript

'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
}