0.0.37 • Published 4 years ago

@reactive-js/pipe v0.0.37

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

@reactive-js/pipe

Type safe functional pipe function. This is an optional dependency for users of reactive-js, but used internally throughout the library.

Installation

via npm

npm install @reactive-js/pipe

via yarn

yarn add @reactive-js/pipe

Usage

import { pipe } from "@reactive-js/pipe";

const arr = new Array(1000);
const result = pipe(arr, f1, f2, f3);

Documentation

API documentation is available here.