export const removeNonNumericCharacters = (toRemove: string) => { return toRemove.replace(/\D/g, '') }