@@ -9,11 +9,11 @@ These objects are available in all modules.
99The following variables may appear to be global but are not. They exist only in
1010the scope of [ CommonJS modules] [ ] :
1111
12- - [ ` __dirname ` ] [ ]
13- - [ ` __filename ` ] [ ]
14- - [ ` exports ` ] [ ]
15- - [ ` module ` ] [ ]
16- - [ ` require() ` ] [ ]
12+ * [ ` __dirname ` ] [ ]
13+ * [ ` __filename ` ] [ ]
14+ * [ ` exports ` ] [ ]
15+ * [ ` module ` ] [ ]
16+ * [ ` require() ` ] [ ]
1717
1818The objects listed here are specific to Node.js. There are [ built-in objects] [ ]
1919that are part of the JavaScript language itself, which are also globally
@@ -62,7 +62,7 @@ changes:
6262 description: Added the new optional reason argument.
6363-->
6464
65- - ` reason ` {any} An optional reason, retrievable on the ` AbortSignal ` 's
65+ * ` reason ` {any} An optional reason, retrievable on the ` AbortSignal ` 's
6666 ` reason ` property.
6767
6868Triggers the abort signal, causing the ` abortController.signal ` to emit
7676 - v14.17.0
7777-->
7878
79- - Type: {AbortSignal}
79+ * Type: {AbortSignal}
8080
8181### Class: ` AbortSignal `
8282
8686 - v14.17.0
8787-->
8888
89- - Extends: {EventTarget}
89+ * Extends: {EventTarget}
9090
9191The ` AbortSignal ` is used to notify observers when the
9292` abortController.abort() ` method is called.
@@ -105,8 +105,8 @@ changes:
105105 description: Added the new optional reason argument.
106106-->
107107
108- - ` reason ` : {any}
109- - Returns: {AbortSignal}
108+ * ` reason ` : {any}
109+ * Returns: {AbortSignal}
110110
111111Returns a new already aborted ` AbortSignal ` .
112112
@@ -118,7 +118,7 @@ added:
118118 - v16.14.0
119119-->
120120
121- - ` delay ` {number} The number of milliseconds to wait before triggering
121+ * ` delay ` {number} The number of milliseconds to wait before triggering
122122 the AbortSignal.
123123
124124Returns a new ` AbortSignal ` which will be aborted in ` delay ` milliseconds.
@@ -131,7 +131,7 @@ added:
131131 - v18.17.0
132132-->
133133
134- - ` signals ` {AbortSignal\[ ] } The ` AbortSignal ` s of which to compose a new ` AbortSignal ` .
134+ * ` signals ` {AbortSignal\[ ] } The ` AbortSignal ` s of which to compose a new ` AbortSignal ` .
135135
136136Returns a new ` AbortSignal ` which will be aborted if any of the provided
137137signals are aborted. Its [ ` abortSignal.reason ` ] [ ] will be set to whichever
@@ -186,7 +186,7 @@ added:
186186 - v14.17.0
187187-->
188188
189- - Type: {boolean} True after the ` AbortController ` has been aborted.
189+ * Type: {boolean} True after the ` AbortController ` has been aborted.
190190
191191#### ` abortSignal.onabort `
192192
@@ -196,7 +196,7 @@ added:
196196 - v14.17.0
197197-->
198198
199- - Type: {Function}
199+ * Type: {Function}
200200
201201An optional callback function that may be set by user code to be notified
202202when the ` abortController.abort() ` function has been called.
@@ -209,7 +209,7 @@ added:
209209 - v16.14.0
210210-->
211211
212- - Type: {any}
212+ * Type: {any}
213213
214214An optional reason specified when the ` AbortSignal ` was triggered.
215215
@@ -247,7 +247,7 @@ added: v0.1.103
247247
248248<!-- type=global -->
249249
250- - {Function}
250+ * {Function}
251251
252252Used to handle binary data. See the [ buffer section] [ ] .
253253
@@ -358,7 +358,7 @@ added: v0.1.100
358358
359359<!-- type=global -->
360360
361- - {Object}
361+ * {Object}
362362
363363Used to print to stdout and stderr. See the [ ` console ` ] [ ] section.
364364
@@ -558,7 +558,7 @@ added: v0.1.27
558558
559559> Stability: 3 - Legacy. Use [ ` globalThis ` ] [ ] instead.
560560
561- - {Object} The global namespace object.
561+ * {Object} The global namespace object.
562562
563563In browsers, the top-level scope has traditionally been the global scope. This
564564means that ` var something ` will define a new global variable, except within
@@ -665,7 +665,7 @@ A partial implementation of [`window.navigator`][].
665665added: v21.0.0
666666-->
667667
668- - {number}
668+ * {number}
669669
670670The ` navigator.hardwareConcurrency ` read-only property returns the number of
671671logical processors available to the current Node.js instance.
@@ -682,7 +682,7 @@ console.log(
682682added: v21.2.0
683683-->
684684
685- - {string}
685+ * {string}
686686
687687The ` navigator.language ` read-only property returns a string representing the
688688preferred language of the Node.js instance. The language will be determined by
@@ -705,7 +705,7 @@ console.log(
705705added: v21.2.0
706706-->
707707
708- - {Array<string >}
708+ * {Array<string >}
709709
710710The ` navigator.languages ` read-only property returns an array of strings
711711representing the preferred languages of the Node.js instance.
@@ -725,7 +725,7 @@ console.log(`The preferred languages are '${navigator.languages}'`);
725725added: v21.2.0
726726-->
727727
728- - {string}
728+ * {string}
729729
730730The ` navigator.platform ` read-only property returns a string identifying the
731731platform on which the Node.js instance is running.
@@ -740,7 +740,7 @@ console.log(`This process is running on ${navigator.platform}`);
740740added: v21.1.0
741741-->
742742
743- - {string}
743+ * {string}
744744
745745The ` navigator.userAgent ` read-only property returns user agent
746746consisting of the runtime name and major version number.
@@ -827,7 +827,7 @@ added: v0.1.7
827827
828828<!-- type=global -->
829829
830- - {Object}
830+ * {Object}
831831
832832The process object. See the [ ` process ` object] [ ] section.
833833
@@ -839,7 +839,7 @@ added: v11.0.0
839839
840840<!-- type=global -->
841841
842- - ` callback ` {Function} Function to be queued.
842+ * ` callback ` {Function} Function to be queued.
843843
844844The ` queueMicrotask() ` method queues a microtask to invoke ` callback ` . If
845845` callback ` throws an exception, the [ ` process ` object] [ ] ` 'uncaughtException' `
@@ -1157,7 +1157,7 @@ added: v8.0.0
11571157
11581158<!-- type=global -->
11591159
1160- - {Object}
1160+ * {Object}
11611161
11621162The object that acts as the namespace for all W3C
11631163[ WebAssembly] [ webassembly-org ] related functionality. See the
0 commit comments