• File: index.js
  • Full Path: /home6/laduliya/test.mydthpay.com/node_modules/npm/node_modules/which-module/index.js
  • Date Modified: 10/26/1985 11:45 AM
  • File size: 248 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'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
}