āØš Basic Usage
1import { Builder } from "hbh-proxies";3const api = new Builder()4 .use("upper", s => s.toUpperCase())5 .use("exclaim", s => s + "!")6 .use("repeat", (s, n) => s.repeat(n));8api.upper.exclaim.repeat("hello", 2);9// ā "HELLO!HELLO!"