UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

5 lines (4 loc) 144 B
export function isValidHostname(hostname) { const hostPattern = /^[a-z0-9][a-z0-9\.\-]*[a-z0-9]$/; return hostPattern.test(hostname); }