UNPKG

120 BJavaScriptView Raw
1var RE = /\s/g
2
3module.exports = function(str){
4 if (!str){
5 return ''
6 }
7
8 return str.replace(RE, '')
9}
\No newline at end of file