import * as A from "flurp/array";const justJoin = A.join();justJoin(["a", "b", "c"])); // "abc"const joinDots = A.join("...");joinDots(["a", "b", "c"])); // "a...b...c"
Example