habitica-self-host/common/script/libs/removeWhitespace.js

11 lines
178 B
JavaScript
Raw Normal View History

2016-03-08 18:35:02 +00:00
/*
Remove whitespace #FIXME are we using this anywwhere? Should we be?
*/
module.exports = function(str) {
if (!str) {
return '';
}
return str.replace(/\s/g, '');
};