export const onlyNumbersAndLetters = (value) => { if(value) return value.replace(/[^a-zA-Z0-9]/g, ''); }