doc: fix return value for require.resolve.paths()
Update documentation of modules.md for require.resolve.paths() to include the possibillity of null as a return value if the request string given matches a core module name. PR-URL: https://github.com/nodejs/node/pull/18350 Fixes: https://github.com/nodejs/node/issues/18230 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
00687fb504
commit
553d4ee57d
@ -626,9 +626,11 @@ added: v8.9.0
|
|||||||
-->
|
-->
|
||||||
|
|
||||||
* `request` {string} The module path whose lookup paths are being retrieved.
|
* `request` {string} The module path whose lookup paths are being retrieved.
|
||||||
* Returns: {Array}
|
* Returns: {Array|null}
|
||||||
|
|
||||||
Returns an array containing the paths searched during resolution of `request`.
|
Returns an array containing the paths searched during resolution of `request` or
|
||||||
|
null if the `request` string references a core module, for example `http` or
|
||||||
|
`fs`.
|
||||||
|
|
||||||
## The `module` Object
|
## The `module` Object
|
||||||
<!-- YAML
|
<!-- YAML
|
||||||
|
Loading…
x
Reference in New Issue
Block a user