()
| 783 | * @since 4.0.0 |
| 784 | */ |
| 785 | export function BigInt<E extends string | number | bigint | boolean>(): Getter<bigint, E> { |
| 786 | return transform(globalThis.BigInt) |
| 787 | } |
| 788 | |
| 789 | /** |
| 790 | * Coerces a value to a `Date` using `new Date(input)`. |
nothing calls this directly
no test coverage detected