export function onlyNumberFilter(inputStr){ // return inputStr.replace(/[^(\d)]/g,"") return inputStr.replace(/[^(-?\d)]/g,"") }