@@ -1042,13 +1042,13 @@ validating the import attributes.
1042
1042
1043
1043
The final value of ` format` must be one of the following:
1044
1044
1045
- | ` format` | Description | Acceptable types for ` source` returned by ` load` |
1046
- | ------------ | ------------------------------ | -------------------------------------------------------------------------- |
1047
- | ` ' builtin' ` | Load a Node.js builtin module | Not applicable |
1048
- | ` ' commonjs' ` | Load a Node.js CommonJS module | { [ ` string` ][], [ ` ArrayBuffer ` ][], [ ` TypedArray` ][], ` null ` , ` undefined ` } |
1049
- | ` ' json' ` | Load a JSON file | { [ ` string` ][], [ ` ArrayBuffer ` ][], [ ` TypedArray` ][] } |
1050
- | ` ' module' ` | Load an ES module | { [ ` string` ][], [ ` ArrayBuffer ` ][], [ ` TypedArray` ][] } |
1051
- | ` ' wasm' ` | Load a WebAssembly module | { [ ` ArrayBuffer ` ][], [ ` TypedArray` ][] } |
1045
+ | ` format` | Description | Acceptable types for ` source` returned by ` load` |
1046
+ | ------------ | ------------------------------ | -------------------------------------------------- |
1047
+ | ` ' builtin' ` | Load a Node.js builtin module | {null} |
1048
+ | ` ' commonjs' ` | Load a Node.js CommonJS module | {string\| ArrayBuffer\| TypedArray\| null\| undefined} |
1049
+ | ` ' json' ` | Load a JSON file | {string\| ArrayBuffer\| TypedArray} |
1050
+ | ` ' module' ` | Load an ES module | {string\| ArrayBuffer\| TypedArray} |
1051
+ | ` ' wasm' ` | Load a WebAssembly module | {ArrayBuffer\| TypedArray} |
1052
1052
1053
1053
The value of ` source` is ignored for type ` ' builtin' ` because currently it is
1054
1054
not possible to replace the value of a Node.js builtin (core) module.
@@ -1091,8 +1091,8 @@ export async function load(url, context, nextLoad) {
1091
1091
1092
1092
> These types all correspond to classes defined in ECMAScript.
1093
1093
1094
- * The specific [ ` ArrayBuffer ` ][] object is a [ ` SharedArrayBuffer ` ][] .
1095
- * The specific [ ` TypedArray` ][] object is a [ ` Uint8Array ` ][] .
1094
+ * The specific { ArrayBuffer} object is a { SharedArrayBuffer} .
1095
+ * The specific { TypedArray} object is a { Uint8Array} .
1096
1096
1097
1097
If the source value of a text-based format (i.e., ` ' json' ` , ` ' module' ` )
1098
1098
is not a string, it is converted to a string using [` util .TextDecoder ` ][].
@@ -1477,14 +1477,10 @@ returned object contains the following keys:
1477
1477
[V8 code cache]: https://v8.dev/blog/code-caching-for-devs
1478
1478
[` " exports" ` ]: packages.md#exports
1479
1479
[` -- enable- source- maps` ]: cli.md#--enable-source-maps
1480
- [` ArrayBuffer ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
1481
1480
[` NODE_COMPILE_CACHE = dir` ]: cli.md#node_compile_cachedir
1482
1481
[` NODE_DISABLE_COMPILE_CACHE = 1 ` ]: cli.md#node_disable_compile_cache1
1483
1482
[` NODE_V8_COVERAGE = dir` ]: cli.md#node_v8_coveragedir
1484
- [` SharedArrayBuffer ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
1485
1483
[` SourceMap` ]: #class-modulesourcemap
1486
- [` TypedArray` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
1487
- [` Uint8Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
1488
1484
[` initialize` ]: #initialize
1489
1485
[` module .constants .compileCacheStatus ` ]: #moduleconstantscompilecachestatus
1490
1486
[` module .enableCompileCache ()` ]: #moduleenablecompilecachecachedir
@@ -1493,7 +1489,6 @@ returned object contains the following keys:
1493
1489
[` module ` ]: #the-module-object
1494
1490
[` os .tmpdir ()` ]: os.md#ostmpdir
1495
1491
[` register` ]: #moduleregisterspecifier-parenturl-options
1496
- [` string` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String
1497
1492
[` util .TextDecoder ` ]: util.md#class-utiltextdecoder
1498
1493
[chain]: #chaining
1499
1494
[hooks]: #customization-hooks
0 commit comments