Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: create a new email validator every time
I noticed half of the contributors to my project had disappeared after the `v1.0.20` release. You have to create a new `email-regex` with [every use](https://runkit.com/embed/g5j2gfwuae06): ```javascript const emailRegex = require("email-regex") const reg = emailRegex() console.info(reg.test('[email protected]')) // true console.info(reg.test('[email protected]')) // false ```
- Loading branch information