interface Pipeableimport { type Pipeable } from "https://deno.land/x/ayonli_jsext@v0.9.72/augment/pipe.ts"; Methodspipe<R, A extends any[] = any[]>(fn: (value: ValueOf<this>, ...args: A) => R, ...args: A): Pipeline<R>Calls a function using the current value as its argument and returns a new Pipeline instance that holds the result.