@@ -691,8 +691,8 @@ changes:
691
691
* ` object ` {any} Any JavaScript primitive or ` Object ` .
692
692
* ` options ` {Object}
693
693
* ` showHidden ` {boolean} If ` true ` , ` object ` 's non-enumerable symbols and
694
- properties are included in the formatted result. [ ` WeakMap ` ] [ ] and
695
- [ ` WeakSet ` ] [ ] entries are also included as well as user defined prototype
694
+ properties are included in the formatted result. { WeakMap} and
695
+ { WeakSet} entries are also included as well as user defined prototype
696
696
properties (excluding method properties). ** Default:** ` false ` .
697
697
* ` depth ` {number} Specifies the number of times to recurse while formatting
698
698
` object ` . This is useful for inspecting large objects. To recurse up to
@@ -707,8 +707,7 @@ changes:
707
707
* ` showProxy ` {boolean} If ` true ` , ` Proxy ` inspection includes
708
708
the [ ` target ` and ` handler ` ] [ ] objects. ** Default:** ` false ` .
709
709
* ` maxArrayLength ` {integer} Specifies the maximum number of ` Array ` ,
710
- [ ` TypedArray ` ] [ ] , [ ` Map ` ] [ ] , [ ` Set ` ] [ ] , [ ` WeakMap ` ] [ ] ,
711
- and [ ` WeakSet ` ] [ ] elements to include when formatting.
710
+ {TypedArray}, {Map}, {WeakMap}, and {WeakSet} elements to include when formatting.
712
711
Set to ` null ` or ` Infinity ` to show all elements. Set to ` 0 ` or
713
712
negative to show no elements. ** Default:** ` 100 ` .
714
713
* ` maxStringLength ` {integer} Specifies the maximum number of characters to
@@ -839,10 +838,10 @@ console.log(util.inspect(o, { compact: false, depth: 5, breakLength: 80 }));
839
838
// single line.
840
839
```
841
840
842
- The ` showHidden ` option allows [ ` WeakMap ` ] [ ] and [ ` WeakSet ` ] [ ] entries to be
841
+ The ` showHidden ` option allows { WeakMap} and { WeakSet} entries to be
843
842
inspected. If there are more entries than ` maxArrayLength ` , there is no
844
843
guarantee which entries are displayed. That means retrieving the same
845
- [ ` WeakSet ` ] [ ] entries twice may result in different output. Furthermore, entries
844
+ { WeakSet} entries twice may result in different output. Furthermore, entries
846
845
with no remaining strong references may be garbage collected at any time.
847
846
848
847
``` js
@@ -2337,8 +2336,8 @@ added: v10.0.0
2337
2336
* ` value` {any}
2338
2337
* Returns: {boolean}
2339
2338
2340
- Returns ` true ` if the value is a built-in [ ` ArrayBuffer ` ][] or
2341
- [ ` SharedArrayBuffer ` ][] instance.
2339
+ Returns ` true ` if the value is a built-in { ArrayBuffer} or
2340
+ { SharedArrayBuffer} instance.
2342
2341
2343
2342
See also [` util .types .isArrayBuffer ()` ][] and
2344
2343
[` util .types .isSharedArrayBuffer ()` ][].
@@ -2357,8 +2356,8 @@ added: v10.0.0
2357
2356
* ` value` {any}
2358
2357
* Returns: {boolean}
2359
2358
2360
- Returns ` true ` if the value is an instance of one of the [ ` ArrayBuffer ` ][]
2361
- views, such as typed array objects or [ ` DataView ` ][] . Equivalent to
2359
+ Returns ` true ` if the value is an instance of one of the { ArrayBuffer}
2360
+ views, such as typed array objects or { DataView} . Equivalent to
2362
2361
[` ArrayBuffer .isView ()` ][].
2363
2362
2364
2363
` ` ` js
@@ -2396,8 +2395,8 @@ added: v10.0.0
2396
2395
* ` value` {any}
2397
2396
* Returns: {boolean}
2398
2397
2399
- Returns ` true ` if the value is a built-in [ ` ArrayBuffer ` ][] instance.
2400
- This does _not_ include [ ` SharedArrayBuffer ` ][] instances. Usually, it is
2398
+ Returns ` true ` if the value is a built-in { ArrayBuffer} instance.
2399
+ This does _not_ include { SharedArrayBuffer} instances. Usually, it is
2401
2400
desirable to test for both; See [` util .types .isAnyArrayBuffer ()` ][] for that.
2402
2401
2403
2402
` ` ` js
@@ -2537,7 +2536,7 @@ added: v10.0.0
2537
2536
* ` value` {any}
2538
2537
* Returns: {boolean}
2539
2538
2540
- Returns ` true ` if the value is a built-in [ ` DataView ` ][] instance.
2539
+ Returns ` true ` if the value is a built-in { DataView} instance.
2541
2540
2542
2541
` ` ` js
2543
2542
const ab = new ArrayBuffer (20 );
@@ -2556,7 +2555,7 @@ added: v10.0.0
2556
2555
* ` value` {any}
2557
2556
* Returns: {boolean}
2558
2557
2559
- Returns ` true ` if the value is a built-in [ ` Date ` ][] instance.
2558
+ Returns ` true ` if the value is a built-in { Date} instance.
2560
2559
2561
2560
` ` ` js
2562
2561
util .types .isDate (new Date ()); // Returns true
@@ -2617,7 +2616,7 @@ added: v10.0.0
2617
2616
* ` value` {any}
2618
2617
* Returns: {boolean}
2619
2618
2620
- Returns ` true ` if the value is a built-in [ ` Float32Array ` ][] instance.
2619
+ Returns ` true ` if the value is a built-in { Float32Array} instance.
2621
2620
2622
2621
` ` ` js
2623
2622
util .types .isFloat32Array (new ArrayBuffer ()); // Returns false
@@ -2634,7 +2633,7 @@ added: v10.0.0
2634
2633
* ` value` {any}
2635
2634
* Returns: {boolean}
2636
2635
2637
- Returns ` true ` if the value is a built-in [ ` Float64Array ` ][] instance.
2636
+ Returns ` true ` if the value is a built-in { Float64Array} instance.
2638
2637
2639
2638
` ` ` js
2640
2639
util .types .isFloat64Array (new ArrayBuffer ()); // Returns false
@@ -2691,7 +2690,7 @@ added: v10.0.0
2691
2690
* ` value` {any}
2692
2691
* Returns: {boolean}
2693
2692
2694
- Returns ` true ` if the value is a built-in [ ` Int8Array ` ][] instance.
2693
+ Returns ` true ` if the value is a built-in { Int8Array} instance.
2695
2694
2696
2695
` ` ` js
2697
2696
util .types .isInt8Array (new ArrayBuffer ()); // Returns false
@@ -2708,7 +2707,7 @@ added: v10.0.0
2708
2707
* ` value` {any}
2709
2708
* Returns: {boolean}
2710
2709
2711
- Returns ` true ` if the value is a built-in [ ` Int16Array ` ][] instance.
2710
+ Returns ` true ` if the value is a built-in { Int16Array} instance.
2712
2711
2713
2712
` ` ` js
2714
2713
util .types .isInt16Array (new ArrayBuffer ()); // Returns false
@@ -2725,7 +2724,7 @@ added: v10.0.0
2725
2724
* ` value` {any}
2726
2725
* Returns: {boolean}
2727
2726
2728
- Returns ` true ` if the value is a built-in [ ` Int32Array ` ][] instance.
2727
+ Returns ` true ` if the value is a built-in { Int32Array} instance.
2729
2728
2730
2729
` ` ` js
2731
2730
util .types .isInt32Array (new ArrayBuffer ()); // Returns false
@@ -2753,7 +2752,7 @@ added: v10.0.0
2753
2752
* ` value` {any}
2754
2753
* Returns: {boolean}
2755
2754
2756
- Returns ` true ` if the value is a built-in [ ` Map ` ][] instance.
2755
+ Returns ` true ` if the value is a built-in { Map} instance.
2757
2756
2758
2757
` ` ` js
2759
2758
util .types .isMap (new Map ()); // Returns true
@@ -2769,7 +2768,7 @@ added: v10.0.0
2769
2768
* Returns: {boolean}
2770
2769
2771
2770
Returns ` true ` if the value is an iterator returned for a built-in
2772
- [ ` Map ` ][] instance.
2771
+ { Map} instance.
2773
2772
2774
2773
` ` ` js
2775
2774
const map = new Map ();
@@ -2870,7 +2869,7 @@ added: v10.0.0
2870
2869
* ` value` {any}
2871
2870
* Returns: {boolean}
2872
2871
2873
- Returns ` true ` if the value is a built-in [ ` Promise ` ][] .
2872
+ Returns ` true ` if the value is a built-in { Promise} .
2874
2873
2875
2874
` ` ` js
2876
2875
util .types .isPromise (Promise .resolve (42 )); // Returns true
@@ -2885,7 +2884,7 @@ added: v10.0.0
2885
2884
* ` value` {any}
2886
2885
* Returns: {boolean}
2887
2886
2888
- Returns ` true ` if the value is a [ ` Proxy ` ][] instance.
2887
+ Returns ` true ` if the value is a { Proxy} instance.
2889
2888
2890
2889
` ` ` js
2891
2890
const target = {};
@@ -2919,7 +2918,7 @@ added: v10.0.0
2919
2918
* ` value` {any}
2920
2919
* Returns: {boolean}
2921
2920
2922
- Returns ` true ` if the value is a built-in [ ` Set ` ][] instance.
2921
+ Returns ` true ` if the value is a built-in { Set} instance.
2923
2922
2924
2923
` ` ` js
2925
2924
util .types .isSet (new Set ()); // Returns true
@@ -2935,7 +2934,7 @@ added: v10.0.0
2935
2934
* Returns: {boolean}
2936
2935
2937
2936
Returns ` true ` if the value is an iterator returned for a built-in
2938
- [ ` Set ` ][] instance.
2937
+ { Set} instance.
2939
2938
2940
2939
` ` ` js
2941
2940
const set = new Set ();
@@ -2954,8 +2953,8 @@ added: v10.0.0
2954
2953
* ` value` {any}
2955
2954
* Returns: {boolean}
2956
2955
2957
- Returns ` true ` if the value is a built-in [ ` SharedArrayBuffer ` ][] instance.
2958
- This does _not_ include [ ` ArrayBuffer ` ][] instances. Usually, it is
2956
+ Returns ` true ` if the value is a built-in { SharedArrayBuffer} instance.
2957
+ This does _not_ include { ArrayBuffer} instances. Usually, it is
2959
2958
desirable to test for both; See [` util .types .isAnyArrayBuffer ()` ][] for that.
2960
2959
2961
2960
` ` ` js
@@ -3007,7 +3006,7 @@ added: v10.0.0
3007
3006
* ` value` {any}
3008
3007
* Returns: {boolean}
3009
3008
3010
- Returns ` true ` if the value is a built-in [ ` TypedArray` ][] instance.
3009
+ Returns ` true ` if the value is a built-in { TypedArray} instance.
3011
3010
3012
3011
` ` ` js
3013
3012
util .types .isTypedArray (new ArrayBuffer ()); // Returns false
@@ -3026,7 +3025,7 @@ added: v10.0.0
3026
3025
* ` value` {any}
3027
3026
* Returns: {boolean}
3028
3027
3029
- Returns ` true ` if the value is a built-in [ ` Uint8Array ` ][] instance.
3028
+ Returns ` true ` if the value is a built-in { Uint8Array} instance.
3030
3029
3031
3030
` ` ` js
3032
3031
util .types .isUint8Array (new ArrayBuffer ()); // Returns false
@@ -3043,7 +3042,7 @@ added: v10.0.0
3043
3042
* ` value` {any}
3044
3043
* Returns: {boolean}
3045
3044
3046
- Returns ` true ` if the value is a built-in [ ` Uint8ClampedArray ` ][] instance.
3045
+ Returns ` true ` if the value is a built-in { Uint8ClampedArray} instance.
3047
3046
3048
3047
` ` ` js
3049
3048
util .types .isUint8ClampedArray (new ArrayBuffer ()); // Returns false
@@ -3060,7 +3059,7 @@ added: v10.0.0
3060
3059
* ` value` {any}
3061
3060
* Returns: {boolean}
3062
3061
3063
- Returns ` true ` if the value is a built-in [ ` Uint16Array ` ][] instance.
3062
+ Returns ` true ` if the value is a built-in { Uint16Array} instance.
3064
3063
3065
3064
` ` ` js
3066
3065
util .types .isUint16Array (new ArrayBuffer ()); // Returns false
@@ -3077,7 +3076,7 @@ added: v10.0.0
3077
3076
* ` value` {any}
3078
3077
* Returns: {boolean}
3079
3078
3080
- Returns ` true ` if the value is a built-in [ ` Uint32Array ` ][] instance.
3079
+ Returns ` true ` if the value is a built-in { Uint32Array} instance.
3081
3080
3082
3081
` ` ` js
3083
3082
util .types .isUint32Array (new ArrayBuffer ()); // Returns false
@@ -3094,7 +3093,7 @@ added: v10.0.0
3094
3093
* ` value` {any}
3095
3094
* Returns: {boolean}
3096
3095
3097
- Returns ` true ` if the value is a built-in [ ` WeakMap ` ][] instance.
3096
+ Returns ` true ` if the value is a built-in { WeakMap} instance.
3098
3097
3099
3098
` ` ` js
3100
3099
util .types .isWeakMap (new WeakMap ()); // Returns true
@@ -3109,7 +3108,7 @@ added: v10.0.0
3109
3108
* ` value` {any}
3110
3109
* Returns: {boolean}
3111
3110
3112
- Returns ` true ` if the value is a built-in [ ` WeakSet ` ][] instance.
3111
+ Returns ` true ` if the value is a built-in { WeakSet} instance.
3113
3112
3114
3113
` ` ` js
3115
3114
util .types .isWeakSet (new WeakSet ()); // Returns true
@@ -3176,31 +3175,11 @@ util.isArray({});
3176
3175
[` ' warning' ` ]: process.md#event-warning
3177
3176
[` Array .isArray ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
3178
3177
[` ArrayBuffer .isView ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView
3179
- [` ArrayBuffer ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
3180
- [` DataView ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView
3181
- [` Date ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
3182
- [` Float32Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array
3183
- [` Float64Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array
3184
- [` Int16Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array
3185
- [` Int32Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array
3186
- [` Int8Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array
3187
3178
[` JSON .stringify ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
3188
3179
[` MIMEparams` ]: #class-utilmimeparams
3189
- [` Map ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
3190
3180
[` Object .assign ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
3191
3181
[` Object .freeze ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze
3192
- [` Promise ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
3193
- [` Proxy ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy
3194
3182
[` Runtime .ScriptId ` ]: https://chromedevtools.github.io/devtools-protocol/1-3/Runtime/#type-ScriptId
3195
- [` Set ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
3196
- [` SharedArrayBuffer ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
3197
- [` TypedArray` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
3198
- [` Uint16Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array
3199
- [` Uint32Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array
3200
- [` Uint8Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
3201
- [` Uint8ClampedArray ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray
3202
- [` WeakMap ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
3203
- [` WeakSet ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
3204
3183
[` assert .deepStrictEqual ()` ]: assert.md#assertdeepstrictequalactual-expected-message
3205
3184
[` console .error ()` ]: console.md#consoleerrordata-args
3206
3185
[` mime .toString ()` ]: #mimetostring
0 commit comments