UNPKG

typia

Version:

Superfast runtime validators with only one line

9 lines (8 loc) 140 B
export const $is_bigint_string = (str: string): boolean => { try { BigInt(str); return true; } catch { return false; } };