mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-25 23:25:51 +00:00
4 lines
72 B
JavaScript
4 lines
72 B
JavaScript
|
|
export default function splitWhitespace (s) {
|
|
return s.split(' ');
|
|
}
|