Skip to content

A lazy streams library for functional composition in JavaScript.

License

Notifications You must be signed in to change notification settings

nikolaybotev/streams

Repository files navigation

Streams

Node CI

A lazy streams library for functional composition in JavaScript.

import "streams/factories";

process.stdin
  .lines()
  .stream()
  .map((s) => s.toLocaleUpperCase())
  .filter((s) => s.length > 3)
  .batch(3)
  .take(2)
  .forEach(console.log)
  .then((_) => console.log("-- all done --"));

About

A lazy streams library for functional composition in JavaScript.

Resources

License

Stars

Watchers

Forks

Packages

No packages published