import { combinable } from "https://deno.land/x/fun@v2.0.0/mod.ts";
const { intercalcate } = combinable;
Create a combinable that works like Array.join, inserting middle between every two values that are combineenated. This can have some interesting results.
Examples
Example 1
Example 1
import * as SG from "./combinable.ts";
import * as S from "./string.ts";
import { pipe } from "./fn.ts";
const { combine: toList } = pipe(
S.InitializableString,
SG.intercalcate(", "),
);
const list = pipe(
"apples",
toList("oranges"),
toList("and bananas"),
); // list === "apples, oranges, and bananas"
Parameters
middle: A