Skip to content

Commit 0675e05

Browse files
authored
doc: fix links in module.md
PR-URL: #56283 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Jacob Smith <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 7560778 commit 0675e05

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

doc/api/module.md

+9-14
Original file line numberDiff line numberDiff line change
@@ -1159,13 +1159,13 @@ validating the import attributes.
11591159
11601160
The final value of `format` must be one of the following:
11611161
1162-
| `format` | Description | Acceptable types for `source` returned by `load` |
1163-
| ------------ | ------------------------------ | -------------------------------------------------------------------------- |
1164-
| `'builtin'` | Load a Node.js builtin module | Not applicable |
1165-
| `'commonjs'` | Load a Node.js CommonJS module | { [`string`][], [`ArrayBuffer`][], [`TypedArray`][], `null`, `undefined` } |
1166-
| `'json'` | Load a JSON file | { [`string`][], [`ArrayBuffer`][], [`TypedArray`][] } |
1167-
| `'module'` | Load an ES module | { [`string`][], [`ArrayBuffer`][], [`TypedArray`][] } |
1168-
| `'wasm'` | Load a WebAssembly module | { [`ArrayBuffer`][], [`TypedArray`][] } |
1162+
| `format` | Description | Acceptable types for `source` returned by `load` |
1163+
| ------------ | ------------------------------ | -------------------------------------------------- |
1164+
| `'builtin'` | Load a Node.js builtin module | {null} |
1165+
| `'commonjs'` | Load a Node.js CommonJS module | {string\|ArrayBuffer\|TypedArray\|null\|undefined} |
1166+
| `'json'` | Load a JSON file | {string\|ArrayBuffer\|TypedArray} |
1167+
| `'module'` | Load an ES module | {string\|ArrayBuffer\|TypedArray} |
1168+
| `'wasm'` | Load a WebAssembly module | {ArrayBuffer\|TypedArray} |
11691169
11701170
The value of `source` is ignored for type `'builtin'` because currently it is
11711171
not possible to replace the value of a Node.js builtin (core) module.
@@ -1222,8 +1222,8 @@ of module format.
12221222
12231223
> These types all correspond to classes defined in ECMAScript.
12241224
1225-
* The specific [`ArrayBuffer`][] object is a [`SharedArrayBuffer`][].
1226-
* The specific [`TypedArray`][] object is a [`Uint8Array`][].
1225+
* The specific {ArrayBuffer} object is a {SharedArrayBuffer}.
1226+
* The specific {TypedArray} object is a {Uint8Array}.
12271227
12281228
If the source value of a text-based format (i.e., `'json'`, `'module'`)
12291229
is not a string, it is converted to a string using [`util.TextDecoder`][].
@@ -1702,14 +1702,10 @@ returned object contains the following keys:
17021702
[`--enable-source-maps`]: cli.md#--enable-source-maps
17031703
[`--import`]: cli.md#--importmodule
17041704
[`--require`]: cli.md#-r---require-module
1705-
[`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
17061705
[`NODE_COMPILE_CACHE=dir`]: cli.md#node_compile_cachedir
17071706
[`NODE_DISABLE_COMPILE_CACHE=1`]: cli.md#node_disable_compile_cache1
17081707
[`NODE_V8_COVERAGE=dir`]: cli.md#node_v8_coveragedir
1709-
[`SharedArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
17101708
[`SourceMap`]: #class-modulesourcemap
1711-
[`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
1712-
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
17131709
[`initialize`]: #initialize
17141710
[`module.constants.compileCacheStatus`]: #moduleconstantscompilecachestatus
17151711
[`module.enableCompileCache()`]: #moduleenablecompilecachecachedir
@@ -1719,7 +1715,6 @@ returned object contains the following keys:
17191715
[`os.tmpdir()`]: os.md#ostmpdir
17201716
[`registerHooks`]: #moduleregisterhooksoptions
17211717
[`register`]: #moduleregisterspecifier-parenturl-options
1722-
[`string`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
17231718
[`util.TextDecoder`]: util.md#class-utiltextdecoder
17241719
[chain]: #chaining
17251720
[hooks]: #customization-hooks

0 commit comments

Comments
 (0)