0.0.13 • Published 6 months ago

streams v0.0.13

Weekly downloads
110
License
MIT
Repository
github
Last release
6 months ago

Streams

Node CI

A lazy streams library for functional composition in JavaScript.

import "streams/polyfill";

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

6 months ago

0.0.13

6 months ago

0.0.10

1 year ago

0.0.11

1 year ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.1

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.1.0

12 years ago