TODO cleanTel

This commit is contained in:
Matteo Manzinello 2019-07-18 10:15:14 +02:00
parent 3b13a398f4
commit f59670dfb5

View File

@ -641,6 +641,10 @@ const composedPath = el => {
// validate an array of emails // validate an array of emails
const validateEmails = arr => arr.every(validateEmail); const validateEmails = arr => arr.every(validateEmail);
// TODO
// clean a telephone number (removes +, - ...)
const cleanTel = tel => tel;
// copy of a string // copy of a string
const copyToClipboard = str => { const copyToClipboard = str => {
let el = document.createElement("textarea"); let el = document.createElement("textarea");