From 9df8b9bf4c99a0ad99ca75edf28379e9332a6d97 Mon Sep 17 00:00:00 2001 From: Sefinek Date: Mon, 25 Dec 2023 01:46:22 +0100 Subject: [PATCH] Fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04372fb..435f5f5 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ https://cdn.jsdelivr.net/gh/sefinek24/email-validator@latest/dist/browser.js const email = 'contact@sefinek.net'; if (emailValidator.test(email)) { - console.log(`✔️ Email ${email} is valid.`; + console.log(`✔️ Email ${email} is valid.`); } else { console.log(`❎ Email ${email} is NOT valid!`); }