export default function isBigInt(value: unknown): value is bigint { return typeof value === 'bigint'; }