esp8266-react-framework/interface/src/validators/isHostname.js

7 lines
311 B
JavaScript
Raw Normal View History

const hostnameLengthRegex = /^.{0,32}$/
const hostnamePatternRegex = /^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z0-9])$/
export default function isHostname(hostname) {
return hostnameLengthRegex.test(hostname) && hostnamePatternRegex.test(hostname);
}