// package
is-bigint
type: "module"
// preferences
// replacements (1)
snippet::is-bigint
Simple or drop-in replacementThis package is no longer necessary. You can use `typeof` to check if a value is a bigint.
// example
const isString = (value) =>
typeof value === 'bigint';