UNPKG

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