Function using

  • Creates a new "cooked" pipe using the provided value as the starting input.

    Deprecated

    Use from with iterable helpers instead.

    Example

    using("Hello World!").pipe(
    (str) => str.split(" ")
    );

    Type Parameters

    • T

    Parameters

    • value: T

    Returns {
        pipe: CookedPipe<T>;
    }

Generated using TypeDoc