Skip to content

Commit

Permalink
Update example.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sefinek24 committed Mar 21, 2024
1 parent b07c00a commit b364d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const emailValidator = require('./src/index.js');
const email = '[email protected]';

if (emailValidator.test(email)) {
console.log(`Email ${email} is valid!`);
console.log(`Email ${email} is valid.`);
} else {
console.log(`Email ${email} is NOT valid!`);
}

0 comments on commit b364d84

Please sign in to comment.