The source string.
The list of characters.
import { fromString, toArray } from "./list.ts";
import { assertEquals } from "../deps.ts";
assertEquals(toArray(fromString("hoge")), ["h", "o", "g", "e"]);
assertEquals(toArray(fromString("")), []);
Generated using TypeDoc
Creates the list of characters of
string
.