mirror of
https://github.com/azure/login.git
synced 2026-06-06 22:47:06 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.9 KiB
Markdown
55 lines
1.9 KiB
Markdown
# which-module
|
|
|
|
> Find the module object for something that was require()d
|
|
|
|
[](https://travis-ci.org/nexdrew/which-module)
|
|
[](https://coveralls.io/github/nexdrew/which-module?branch=master)
|
|
[](https://github.com/conventional-changelog/standard-version)
|
|
|
|
Find the `module` object in `require.cache` for something that was `require()`d
|
|
or `import`ed - essentially a reverse `require()` lookup.
|
|
|
|
Useful for libs that want to e.g. lookup a filename for a module or submodule
|
|
that it did not `require()` itself.
|
|
|
|
## Install and Usage
|
|
|
|
```
|
|
npm install --save which-module
|
|
```
|
|
|
|
```js
|
|
const whichModule = require('which-module')
|
|
|
|
console.log(whichModule(require('something')))
|
|
// Module {
|
|
// id: '/path/to/project/node_modules/something/index.js',
|
|
// exports: [Function],
|
|
// parent: ...,
|
|
// filename: '/path/to/project/node_modules/something/index.js',
|
|
// loaded: true,
|
|
// children: [],
|
|
// paths: [ '/path/to/project/node_modules/something/node_modules',
|
|
// '/path/to/project/node_modules',
|
|
// '/path/to/node_modules',
|
|
// '/path/node_modules',
|
|
// '/node_modules' ] }
|
|
```
|
|
|
|
## API
|
|
|
|
### `whichModule(exported)`
|
|
|
|
Return the [`module` object](https://nodejs.org/api/modules.html#modules_the_module_object),
|
|
if any, that represents the given argument in the `require.cache`.
|
|
|
|
`exported` can be anything that was previously `require()`d or `import`ed as a
|
|
module, submodule, or dependency - which means `exported` is identical to the
|
|
`module.exports` returned by this method.
|
|
|
|
If `exported` did not come from the `exports` of a `module` in `require.cache`,
|
|
then this method returns `null`.
|
|
|
|
## License
|
|
|
|
ISC © Contributors
|