Skip to content

fnxt-js/core

Repository files navigation

FNXT: Functional Extensions for JavaScript

CI npm version

FNXT Logo

  • 🚀 a functional JavaScript and TypeScript experience.
  • 🤗 does not mutate values
  • 🍎 a small footprint through tree shaking

Installation

npm i fnxt

Documentation

The API Documentation can be found here.

Example

import {filter, map} from 'fnxt/array';
import {pipe} from 'fnxt/pipe';

const composed = pipe(
  filter((x:number) => x % 2 !== 0),
  map((x:number) => x*2),
);

composed([1,2,3,4,5]); //-> [2,6,10]

Tested

Thoroughly tested and reliable. The code coverage can be found here.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published