UNPKG

typia

Version:

Superfast runtime validators with only one line

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