Projekt

Obecné

Profil

Stáhnout (248 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict'
2

    
3
module.exports = function whichModule (exported) {
4
  for (var i = 0, files = Object.keys(require.cache), mod; i < files.length; i++) {
5
    mod = require.cache[files[i]]
6
    if (mod.exports === exported) return mod
7
  }
8
  return null
9
}
(4-4/5)