UNPKG

typia

Version:

Superfast runtime validators with only one line

9 lines (8 loc) 141 B
export const _isFormatRegex = (str: string): boolean => { try { new RegExp(str); return true; } catch { return false; } };