Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ayonli_jsext/augment/pipe.ts>Pipeable

A JavaScript extension package for building strong and modern applications.
Latest
interface Pipeable
import { type Pipeable } from "https://deno.land/x/ayonli_jsext@v0.9.72/augment/pipe.ts";

Methods

pipe<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.