From f59670dfb5748479c3ddade288766507a6e15821 Mon Sep 17 00:00:00 2001 From: Matteo Manzinello Date: Thu, 18 Jul 2019 10:15:14 +0200 Subject: [PATCH] TODO cleanTel --- src/mailgo.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mailgo.js b/src/mailgo.js index 0dd1f0a..602f904 100644 --- a/src/mailgo.js +++ b/src/mailgo.js @@ -641,6 +641,10 @@ const composedPath = el => { // validate an array of emails const validateEmails = arr => arr.every(validateEmail); +// TODO +// clean a telephone number (removes +, - ...) +const cleanTel = tel => tel; + // copy of a string const copyToClipboard = str => { let el = document.createElement("textarea");