mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-24 06:35:27 +00:00
11 lines
178 B
JavaScript
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, '');
|
||
|
|
};
|