This repository was archived by the owner on Dec 12, 2021. It is now read-only.

Description
// EXPECTED: Control/normal email
validate.single("[email protected]", { email: true });
// => undefined
// EXPECTED: Use spacebar space
validate.single(" [email protected]", { email: true });
// => [ 'is not a valid email' ]
// UNEXPECTED: Use "Thin Space" Unicode Character (U+2009)
validate.single(" [email protected]", { email: true });
// => undefined