Sha256: a4a9a883a79a43efcf8329429655b80c252e56c3e9dc838aed79e2b57cc7a301
Contents?: true
Size: 573 Bytes
Versions: 26
Compression:
Stored size: 573 Bytes
Contents
/** * Implements fast shallow verification of hostnames. This does not perform a * struct check on the content of labels (classes of Unicode characters, etc.) * but instead check that the structure is valid (number of labels, length of * labels, etc.). * * If you need stricter validation, consider using an external library. */ /** * Check if a hostname string is valid. It's usually a preliminary check before * trying to use getDomain or anything else. * * Beware: it does not check if the TLD exists. */ export default function (hostname: string): boolean;
Version data entries
26 entries across 26 versions & 1 rubygems