Creates the list of characters of string.
string
The source string.
The list of characters.
expect(toArray(fromString("hoge"))).toStrictEqual(["h", "o", "g", "e"]);expect(toArray(fromString(""))).toStrictEqual([]); Copy
expect(toArray(fromString("hoge"))).toStrictEqual(["h", "o", "g", "e"]);expect(toArray(fromString(""))).toStrictEqual([]);
Creates the list of characters of
string.