mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
5 lines
75 B
JavaScript
5 lines
75 B
JavaScript
|
|
module.exports = function splitWhitespace (s) {
|
|
return s.split(' ');
|
|
};
|