MCPcopy Create free account
hub / github.com/SmartThingsCommunity/smartthings-cli / emailValidate

Function emailValidate

src/lib/validate-util.ts:143–144  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

141// eslint-disable-next-line no-control-regex
142const validEmailRegex = /(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/
143export const emailValidate = (input: string): true | string =>
144 input.match(validEmailRegex) ? true : 'must be a valid email address'
145
146export const urlValidate = urlValidateFn()
147export const httpsURLValidate = urlValidateFn({ httpsRequired: true })

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected