Files
habitica/common/script/libs/removeWhitespace.js
2016-03-08 19:35:02 +01:00

11 lines
178 B
JavaScript

/*
Remove whitespace #FIXME are we using this anywwhere? Should we be?
*/
module.exports = function(str) {
if (!str) {
return '';
}
return str.replace(/\s/g, '');
};