typia
Version:
Superfast runtime validators with only one line
7 lines • 378 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._isFormatIdnHostname = void 0;
const _isFormatIdnHostname = (str) => PATTERN.test(str);
exports._isFormatIdnHostname = _isFormatIdnHostname;
const PATTERN = /^([a-z0-9\u00a1-\uffff0-9]+(-[a-z0-9\u00a1-\uffff0-9]+)*\.)+[a-z\u00a1-\uffff]{2,}$/i;
//# sourceMappingURL=_isFormatIdnHostname.js.map