Repository URL to install this package:
|
Version:
1.3.3 ▾
|
const removeWhitespace = string => {
return string.replace(/(\s|\t|\n|\r| )+/, '')
}
export { removeWhitespace }