function submitPhone(inputPhone) { const value = inputPhone.replace(/ /g, ''); return value; } export default submitPhone;