@@ -695,8 +695,8 @@ changes:
695
695
* ` object ` {any} Any JavaScript primitive or ` Object ` .
696
696
* ` options ` {Object}
697
697
* ` showHidden ` {boolean} If ` true ` , ` object ` 's non-enumerable symbols and
698
- properties are included in the formatted result. [ ` WeakMap ` ] [ ] and
699
- [ ` WeakSet ` ] [ ] entries are also included as well as user defined prototype
698
+ properties are included in the formatted result. { WeakMap} and
699
+ { WeakSet} entries are also included as well as user defined prototype
700
700
properties (excluding method properties). ** Default:** ` false ` .
701
701
* ` depth ` {number} Specifies the number of times to recurse while formatting
702
702
` object ` . This is useful for inspecting large objects. To recurse up to
@@ -711,8 +711,7 @@ changes:
711
711
* ` showProxy ` {boolean} If ` true ` , ` Proxy ` inspection includes
712
712
the [ ` target ` and ` handler ` ] [ ] objects. ** Default:** ` false ` .
713
713
* ` maxArrayLength ` {integer} Specifies the maximum number of ` Array ` ,
714
- [ ` TypedArray ` ] [ ] , [ ` Map ` ] [ ] , [ ` Set ` ] [ ] , [ ` WeakMap ` ] [ ] ,
715
- and [ ` WeakSet ` ] [ ] elements to include when formatting.
714
+ {TypedArray}, {Map}, {WeakMap}, and {WeakSet} elements to include when formatting.
716
715
Set to ` null ` or ` Infinity ` to show all elements. Set to ` 0 ` or
717
716
negative to show no elements. ** Default:** ` 100 ` .
718
717
* ` maxStringLength ` {integer} Specifies the maximum number of characters to
@@ -843,10 +842,10 @@ console.log(util.inspect(o, { compact: false, depth: 5, breakLength: 80 }));
843
842
// single line.
844
843
```
845
844
846
- The ` showHidden ` option allows [ ` WeakMap ` ] [ ] and [ ` WeakSet ` ] [ ] entries to be
845
+ The ` showHidden ` option allows { WeakMap} and { WeakSet} entries to be
847
846
inspected. If there are more entries than ` maxArrayLength ` , there is no
848
847
guarantee which entries are displayed. That means retrieving the same
849
- [ ` WeakSet ` ] [ ] entries twice may result in different output. Furthermore, entries
848
+ { WeakSet} entries twice may result in different output. Furthermore, entries
850
849
with no remaining strong references may be garbage collected at any time.
851
850
852
851
``` js
@@ -2343,8 +2342,8 @@ added: v10.0.0
2343
2342
* ` value` {any}
2344
2343
* Returns: {boolean}
2345
2344
2346
- Returns ` true ` if the value is a built-in [ ` ArrayBuffer ` ][] or
2347
- [ ` SharedArrayBuffer ` ][] instance.
2345
+ Returns ` true ` if the value is a built-in { ArrayBuffer} or
2346
+ { SharedArrayBuffer} instance.
2348
2347
2349
2348
See also [` util .types .isArrayBuffer ()` ][] and
2350
2349
[` util .types .isSharedArrayBuffer ()` ][].
@@ -2363,8 +2362,8 @@ added: v10.0.0
2363
2362
* ` value` {any}
2364
2363
* Returns: {boolean}
2365
2364
2366
- Returns ` true ` if the value is an instance of one of the [ ` ArrayBuffer ` ][]
2367
- views, such as typed array objects or [ ` DataView ` ][] . Equivalent to
2365
+ Returns ` true ` if the value is an instance of one of the { ArrayBuffer}
2366
+ views, such as typed array objects or { DataView} . Equivalent to
2368
2367
[` ArrayBuffer .isView ()` ][].
2369
2368
2370
2369
` ` ` js
@@ -2402,8 +2401,8 @@ added: v10.0.0
2402
2401
* ` value` {any}
2403
2402
* Returns: {boolean}
2404
2403
2405
- Returns ` true ` if the value is a built-in [ ` ArrayBuffer ` ][] instance.
2406
- This does _not_ include [ ` SharedArrayBuffer ` ][] instances. Usually, it is
2404
+ Returns ` true ` if the value is a built-in { ArrayBuffer} instance.
2405
+ This does _not_ include { SharedArrayBuffer} instances. Usually, it is
2407
2406
desirable to test for both; See [` util .types .isAnyArrayBuffer ()` ][] for that.
2408
2407
2409
2408
` ` ` js
@@ -2543,7 +2542,7 @@ added: v10.0.0
2543
2542
* ` value` {any}
2544
2543
* Returns: {boolean}
2545
2544
2546
- Returns ` true ` if the value is a built-in [ ` DataView ` ][] instance.
2545
+ Returns ` true ` if the value is a built-in { DataView} instance.
2547
2546
2548
2547
` ` ` js
2549
2548
const ab = new ArrayBuffer (20 );
@@ -2562,7 +2561,7 @@ added: v10.0.0
2562
2561
* ` value` {any}
2563
2562
* Returns: {boolean}
2564
2563
2565
- Returns ` true ` if the value is a built-in [ ` Date ` ][] instance.
2564
+ Returns ` true ` if the value is a built-in { Date} instance.
2566
2565
2567
2566
` ` ` js
2568
2567
util .types .isDate (new Date ()); // Returns true
@@ -2623,7 +2622,7 @@ added: v10.0.0
2623
2622
* ` value` {any}
2624
2623
* Returns: {boolean}
2625
2624
2626
- Returns ` true ` if the value is a built-in [ ` Float32Array ` ][] instance.
2625
+ Returns ` true ` if the value is a built-in { Float32Array} instance.
2627
2626
2628
2627
` ` ` js
2629
2628
util .types .isFloat32Array (new ArrayBuffer ()); // Returns false
@@ -2640,7 +2639,7 @@ added: v10.0.0
2640
2639
* ` value` {any}
2641
2640
* Returns: {boolean}
2642
2641
2643
- Returns ` true ` if the value is a built-in [ ` Float64Array ` ][] instance.
2642
+ Returns ` true ` if the value is a built-in { Float64Array} instance.
2644
2643
2645
2644
` ` ` js
2646
2645
util .types .isFloat64Array (new ArrayBuffer ()); // Returns false
@@ -2697,7 +2696,7 @@ added: v10.0.0
2697
2696
* ` value` {any}
2698
2697
* Returns: {boolean}
2699
2698
2700
- Returns ` true ` if the value is a built-in [ ` Int8Array ` ][] instance.
2699
+ Returns ` true ` if the value is a built-in { Int8Array} instance.
2701
2700
2702
2701
` ` ` js
2703
2702
util .types .isInt8Array (new ArrayBuffer ()); // Returns false
@@ -2714,7 +2713,7 @@ added: v10.0.0
2714
2713
* ` value` {any}
2715
2714
* Returns: {boolean}
2716
2715
2717
- Returns ` true ` if the value is a built-in [ ` Int16Array ` ][] instance.
2716
+ Returns ` true ` if the value is a built-in { Int16Array} instance.
2718
2717
2719
2718
` ` ` js
2720
2719
util .types .isInt16Array (new ArrayBuffer ()); // Returns false
@@ -2731,7 +2730,7 @@ added: v10.0.0
2731
2730
* ` value` {any}
2732
2731
* Returns: {boolean}
2733
2732
2734
- Returns ` true ` if the value is a built-in [ ` Int32Array ` ][] instance.
2733
+ Returns ` true ` if the value is a built-in { Int32Array} instance.
2735
2734
2736
2735
` ` ` js
2737
2736
util .types .isInt32Array (new ArrayBuffer ()); // Returns false
@@ -2759,7 +2758,7 @@ added: v10.0.0
2759
2758
* ` value` {any}
2760
2759
* Returns: {boolean}
2761
2760
2762
- Returns ` true ` if the value is a built-in [ ` Map ` ][] instance.
2761
+ Returns ` true ` if the value is a built-in { Map} instance.
2763
2762
2764
2763
` ` ` js
2765
2764
util .types .isMap (new Map ()); // Returns true
@@ -2775,7 +2774,7 @@ added: v10.0.0
2775
2774
* Returns: {boolean}
2776
2775
2777
2776
Returns ` true ` if the value is an iterator returned for a built-in
2778
- [ ` Map ` ][] instance.
2777
+ { Map} instance.
2779
2778
2780
2779
` ` ` js
2781
2780
const map = new Map ();
@@ -2876,7 +2875,7 @@ added: v10.0.0
2876
2875
* ` value` {any}
2877
2876
* Returns: {boolean}
2878
2877
2879
- Returns ` true ` if the value is a built-in [ ` Promise ` ][] .
2878
+ Returns ` true ` if the value is a built-in { Promise} .
2880
2879
2881
2880
` ` ` js
2882
2881
util .types .isPromise (Promise .resolve (42 )); // Returns true
@@ -2891,7 +2890,7 @@ added: v10.0.0
2891
2890
* ` value` {any}
2892
2891
* Returns: {boolean}
2893
2892
2894
- Returns ` true ` if the value is a [ ` Proxy ` ][] instance.
2893
+ Returns ` true ` if the value is a { Proxy} instance.
2895
2894
2896
2895
` ` ` js
2897
2896
const target = {};
@@ -2925,7 +2924,7 @@ added: v10.0.0
2925
2924
* ` value` {any}
2926
2925
* Returns: {boolean}
2927
2926
2928
- Returns ` true ` if the value is a built-in [ ` Set ` ][] instance.
2927
+ Returns ` true ` if the value is a built-in { Set} instance.
2929
2928
2930
2929
` ` ` js
2931
2930
util .types .isSet (new Set ()); // Returns true
@@ -2941,7 +2940,7 @@ added: v10.0.0
2941
2940
* Returns: {boolean}
2942
2941
2943
2942
Returns ` true ` if the value is an iterator returned for a built-in
2944
- [ ` Set ` ][] instance.
2943
+ { Set} instance.
2945
2944
2946
2945
` ` ` js
2947
2946
const set = new Set ();
@@ -2960,8 +2959,8 @@ added: v10.0.0
2960
2959
* ` value` {any}
2961
2960
* Returns: {boolean}
2962
2961
2963
- Returns ` true ` if the value is a built-in [ ` SharedArrayBuffer ` ][] instance.
2964
- This does _not_ include [ ` ArrayBuffer ` ][] instances. Usually, it is
2962
+ Returns ` true ` if the value is a built-in { SharedArrayBuffer} instance.
2963
+ This does _not_ include { ArrayBuffer} instances. Usually, it is
2965
2964
desirable to test for both; See [` util .types .isAnyArrayBuffer ()` ][] for that.
2966
2965
2967
2966
` ` ` js
@@ -3013,7 +3012,7 @@ added: v10.0.0
3013
3012
* ` value` {any}
3014
3013
* Returns: {boolean}
3015
3014
3016
- Returns ` true ` if the value is a built-in [ ` TypedArray` ][] instance.
3015
+ Returns ` true ` if the value is a built-in { TypedArray} instance.
3017
3016
3018
3017
` ` ` js
3019
3018
util .types .isTypedArray (new ArrayBuffer ()); // Returns false
@@ -3032,7 +3031,7 @@ added: v10.0.0
3032
3031
* ` value` {any}
3033
3032
* Returns: {boolean}
3034
3033
3035
- Returns ` true ` if the value is a built-in [ ` Uint8Array ` ][] instance.
3034
+ Returns ` true ` if the value is a built-in { Uint8Array} instance.
3036
3035
3037
3036
` ` ` js
3038
3037
util .types .isUint8Array (new ArrayBuffer ()); // Returns false
@@ -3049,7 +3048,7 @@ added: v10.0.0
3049
3048
* ` value` {any}
3050
3049
* Returns: {boolean}
3051
3050
3052
- Returns ` true ` if the value is a built-in [ ` Uint8ClampedArray ` ][] instance.
3051
+ Returns ` true ` if the value is a built-in { Uint8ClampedArray} instance.
3053
3052
3054
3053
` ` ` js
3055
3054
util .types .isUint8ClampedArray (new ArrayBuffer ()); // Returns false
@@ -3066,7 +3065,7 @@ added: v10.0.0
3066
3065
* ` value` {any}
3067
3066
* Returns: {boolean}
3068
3067
3069
- Returns ` true ` if the value is a built-in [ ` Uint16Array ` ][] instance.
3068
+ Returns ` true ` if the value is a built-in { Uint16Array} instance.
3070
3069
3071
3070
` ` ` js
3072
3071
util .types .isUint16Array (new ArrayBuffer ()); // Returns false
@@ -3083,7 +3082,7 @@ added: v10.0.0
3083
3082
* ` value` {any}
3084
3083
* Returns: {boolean}
3085
3084
3086
- Returns ` true ` if the value is a built-in [ ` Uint32Array ` ][] instance.
3085
+ Returns ` true ` if the value is a built-in { Uint32Array} instance.
3087
3086
3088
3087
` ` ` js
3089
3088
util .types .isUint32Array (new ArrayBuffer ()); // Returns false
@@ -3100,7 +3099,7 @@ added: v10.0.0
3100
3099
* ` value` {any}
3101
3100
* Returns: {boolean}
3102
3101
3103
- Returns ` true ` if the value is a built-in [ ` WeakMap ` ][] instance.
3102
+ Returns ` true ` if the value is a built-in { WeakMap} instance.
3104
3103
3105
3104
` ` ` js
3106
3105
util .types .isWeakMap (new WeakMap ()); // Returns true
@@ -3115,7 +3114,7 @@ added: v10.0.0
3115
3114
* ` value` {any}
3116
3115
* Returns: {boolean}
3117
3116
3118
- Returns ` true ` if the value is a built-in [ ` WeakSet ` ][] instance.
3117
+ Returns ` true ` if the value is a built-in { WeakSet} instance.
3119
3118
3120
3119
` ` ` js
3121
3120
util .types .isWeakSet (new WeakSet ()); // Returns true
@@ -3182,31 +3181,11 @@ util.isArray({});
3182
3181
[` ' warning' ` ]: process.md#event-warning
3183
3182
[` Array .isArray ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
3184
3183
[` ArrayBuffer .isView ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView
3185
- [` ArrayBuffer ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
3186
- [` DataView ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView
3187
- [` Date ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
3188
- [` Float32Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array
3189
- [` Float64Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array
3190
- [` Int16Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array
3191
- [` Int32Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array
3192
- [` Int8Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array
3193
3184
[` JSON .stringify ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
3194
3185
[` MIMEparams` ]: #class-utilmimeparams
3195
- [` Map ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map
3196
3186
[` Object .assign ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
3197
3187
[` Object .freeze ()` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze
3198
- [` Promise ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise
3199
- [` Proxy ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Proxy
3200
3188
[` Runtime .ScriptId ` ]: https://chromedevtools.github.io/devtools-protocol/1-3/Runtime/#type-ScriptId
3201
- [` Set ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set
3202
- [` SharedArrayBuffer ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer
3203
- [` TypedArray` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
3204
- [` Uint16Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array
3205
- [` Uint32Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array
3206
- [` Uint8Array ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
3207
- [` Uint8ClampedArray ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray
3208
- [` WeakMap ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap
3209
- [` WeakSet ` ]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet
3210
3189
[` assert .deepStrictEqual ()` ]: assert.md#assertdeepstrictequalactual-expected-message
3211
3190
[` console .error ()` ]: console.md#consoleerrordata-args
3212
3191
[` mime .toString ()` ]: #mimetostring
0 commit comments