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