Typed
Determine if a value is a bigint
Pass in a value and get a boolean telling you if the value is a bigint.
import { isBigInt } from 'radash' isBigInt('hello') // => false isBigInt(['hello']) // => false isBigInt(12) // => false isBigInt(0n) // => true