Skip to content

Commit 6731586

Browse files
docs(README.md): remove one of the bigint
1 parent 000cf30 commit 6731586

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2028,13 +2028,7 @@ const TESTING_ARRAY_UNDEFINED: Array<undefined | unknown> = [
20282028
* typeOf(): "bigint"
20292029
* typeof: "bigint"
20302030
*/
2031-
const TESTING_BIGINT = 9007199254740991n;
2032-
2033-
/**
2034-
* typeOf(): "bigint"
2035-
* typeof: "bigint"
2036-
*/
2037-
const TESTING_BIGINT_CONSTRUCTOR = BigInt('9007199254740991'); // typeof === 'bigint'
2031+
const TESTING_BIGINT = BigInt('9007199254740991');
20382032
```
20392033

20402034
### `Boolean`

0 commit comments

Comments
 (0)