Add bigint to list of primitives

This commit is contained in:
= 2023-08-03 08:23:39 +09:00
parent 853fd9a59b
commit 7b43a3dbea

View file

@ -369,7 +369,15 @@ Returns `true` if `value` is one of: `false`, `0`, `''`, `null`, `undefined`, `N
##### .nullOrUndefined(value)
##### .primitive(value)
JavaScript primitives are as follows: `null`, `undefined`, `string`, `number`, `boolean`, `symbol`.
JavaScript primitives are as follows:
- `null`
- `undefined`
- `string`
- `number`
- `boolean`
- `symbol`
- `bigint`
##### .integer(value)