UNPKG

typia

Version:

Superfast runtime validators with only one line

11 lines (9 loc) 225 B
export const _httpParameterReadBigint = (value: string) => value !== "null" ? toBigint(value) : null; const toBigint = (str: string): bigint | string => { try { return BigInt(str); } catch { return str; } };