@storm-stack/types
Version:
⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.
17 lines (16 loc) • 346 B
TypeScript
/**
* Checks if `value` is classified as a `bigint` object.
*
* @example
* ```typescript
* isDate(37n)
* // => true
*
* isBigInt(37)
* // => false
* ```
*
* @param value - The obj to check.
* @returns Returns `true` if `value` is a bigint object, else `false`.
*/
export declare const isBigInt: (value: unknown) => value is bigint;