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

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