Socket
Socket
Sign inDemoInstall

fxts-test

Package Overview
Dependencies
1
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fxts-test

FxTS is a functional library for TypeScript/Javascript programmers.


Version published
Maintainers
2
Created

Readme

Source

FxTS

FxTS is a functional library for TypeScript/Javascript programmers.

Why FxTS?

  • Lazy evaluation
  • Handling concurrent requests
  • Type inference
  • Follow iteration protocal Iterable / AsyncIterable

Installation

npm install fxts

Documentation

Please review the API documentation

Usage

import { pipe, range, map, filter, take, each } from "fxts";

pipe(
  range(10),
  map((a) => a + 10),
  filter((a) => a % 2 === 0),
  take(2),
  each((a) => console.log(a)),
);

you can also handle asynchronous data, see the example

Build

  • npm run build

Running Test

  • npm test

License

Apache License 2.0

FAQs

Last updated on 12 Nov 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc