mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 05:07:22 +01:00
4 lines
71 B
JavaScript
4 lines
71 B
JavaScript
export default function splitWhitespace (s) {
|
|
return s.split(' ');
|
|
}
|