All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.which-module.index.js Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
'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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy