UNPKG

@samchon/openapi

Version:

OpenAPI definitions and converters for 'typia' and 'nestia'.

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