(input: unknown)
| 353 | * @since 2.0.0 |
| 354 | */ |
| 355 | export const isNumber = (input: unknown): input is number => typeof input === "number" |
| 356 | |
| 357 | /** |
| 358 | * A refinement that checks if a value is a `boolean`. |
no outgoing calls
no test coverage detected
searching dependent graphs…