UNPKG

typia

Version:

Superfast runtime validators with only one line

7 lines (4 loc) 216 B
import { _isFormatIriReference } from "./_isFormatIriReference"; export const _isFormatIri = (str: string): boolean => SCHEME.test(str) && _isFormatIriReference(str); const SCHEME = /^[A-Za-z][A-Za-z0-9+.-]*:/u;