mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 15:38:06 -05:00
12 lines
320 B
TypeScript
12 lines
320 B
TypeScript
// test_output! [["🚀","🍹","a","b","c","£","한","🎨"],["f","","bar"],["","bar"],["foo",""],["one","two","three"]]
|
|
|
|
export default function () {
|
|
return [
|
|
"🚀🍹abc£한🎨".split(""),
|
|
"foobar".split("o"),
|
|
"foobar".split("foo"),
|
|
"foobar".split("bar"),
|
|
"one two three".split(" "),
|
|
];
|
|
}
|