UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

6 lines (5 loc) 202 B
import { getObjectTag } from "./get-object-tag.mjs"; export const isBigInt = (value) => ( // eslint-disable-next-line eqeqeq typeof value === "bigint" || getObjectTag(value) == "[object BigInt]" );