@@ -1159,13 +1159,13 @@ validating the import attributes.
1159
1159
1160
1160
The final value of ` format` must be one of the following:
1161
1161
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} |
1169
1169
1170
1170
The value of ` source` is ignored for type ` ' builtin' ` because currently it is
1171
1171
not possible to replace the value of a Node.js builtin (core) module.
@@ -1222,8 +1222,8 @@ of module format.
1222
1222
1223
1223
> These types all correspond to classes defined in ECMAScript.
1224
1224
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} .
1227
1227
1228
1228
If the source value of a text-based format (i.e., ` ' json' ` , ` ' module' ` )
1229
1229
is not a string, it is converted to a string using [` util .TextDecoder ` ][].
@@ -1702,14 +1702,10 @@ returned object contains the following keys:
1702
1702
[` -- enable- source- maps` ]: cli.md#--enable-source-maps
1703
1703
[` -- import ` ]: cli.md#--importmodule
1704
1704
[` --require` ]: cli.md#-r---require-module
1705
- [` ArrayBuffer` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
1706
1705
[` NODE_COMPILE_CACHE=dir` ]: cli.md#node_compile_cachedir
1707
1706
[` NODE_DISABLE_COMPILE_CACHE=1` ]: cli.md#node_disable_compile_cache1
1708
1707
[` NODE_V8_COVERAGE=dir` ]: cli.md#node_v8_coveragedir
1709
- [` SharedArrayBuffer` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
1710
1708
[` 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
1713
1709
[` initialize` ]: #initialize
1714
1710
[` module.constants.compileCacheStatus` ]: #moduleconstantscompilecachestatus
1715
1711
[` module.enableCompileCache()` ]: #moduleenablecompilecachecachedir
@@ -1719,7 +1715,6 @@ returned object contains the following keys:
1719
1715
[` os.tmpdir()` ]: os.md#ostmpdir
1720
1716
[` registerHooks` ]: #moduleregisterhooksoptions
1721
1717
[` register` ]: #moduleregisterspecifier-parenturl-options
1722
- [` string` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
1723
1718
[` util.TextDecoder` ]: util.md#class-utiltextdecoder
1724
1719
[chain]: #chaining
1725
1720
[hooks]: #customization-hooks
0 commit comments