Skip to content

Commit 475e478

Browse files
leviscarmarco-ippolito
authored andcommitted
doc: add isBigIntObject to documentation
Refs: #19989 Fixes: #55446 PR-URL: #55450 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent a28376b commit 475e478

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

doc/api/util.md

+18
Original file line numberDiff line numberDiff line change
@@ -2292,6 +2292,24 @@ util.types.isBigInt64Array(new BigInt64Array()); // Returns true
22922292
util.types.isBigInt64Array(new BigUint64Array()); // Returns false
22932293
```
22942294
2295+
### `util.types.isBigIntObject(value)`
2296+
2297+
<!-- YAML
2298+
added: v10.4.0
2299+
-->
2300+
2301+
* `value` {any}
2302+
* Returns: {boolean}
2303+
2304+
Returns `true` if the value is a BigInt object, e.g. created
2305+
by `Object(BigInt(123))`.
2306+
2307+
```js
2308+
util.types.isBigIntObject(Object(BigInt(123))); // Returns true
2309+
util.types.isBigIntObject(BigInt(123)); // Returns false
2310+
util.types.isBigIntObject(123); // Returns false
2311+
```
2312+
22952313
### `util.types.isBigUint64Array(value)`
22962314
22972315
<!-- YAML

0 commit comments

Comments
 (0)