Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Implements common array methods in a lazy manner. Nothing more.
There's an asynchronous version of this library as well, called lazily-async. See https://github.com/isotropy/lazily-async
npm install lazily
import { Seq } from "lazily";
const seq = Seq.of([1, 2, 3])
for (const i of seq) {
console.log(i)
}
Sequences are lazy. For example, in the following example only one map() action is performed irrespective of the length of the sequence.
const seq = Seq.of([1, 2, 3])
.map(x => x * 2)
.first();
Seq.of([1, 2, 3])
.toArray()
// [1, 2, 3]
Seq.of([1, 2, 3])
.map(x => x * 2)
.toArray()
// [2, 4, 6]
Seq.of([1, 2, 3])
.flatMap(x => [x*10, x*20])
.toArray()
// [11, 21, 12, 22, 13, 23]
Seq.of([1, 2, 3, 4])
.filter(x => x > 2)
.toArray()
//[3, 4]
Seq.of([1, 2, 3, 4, 5])
.exit(x => x > 3)
.toArray()
// [1, 2, 3]
Seq.of([1, 2, 3, 4, 5])
.exitAfter(x => x > 3)
.toArray()
// [1, 2, 3, 4]
Seq.of([1, 2, 3, 4, 5])
.find(x => x * 10 === 30)
// 3
Seq.of([1, 2, 3, 4, 5])
.reduce((acc, x) => acc + x, 0)
// 15
Seq.of([1, 2, 3, 4, 5])
.reduce((acc, x) => acc + x, 0, acc => acc > 6)
// 10
Seq.of([1, 2, 3, 4, 5])
.first();
// 1
Seq.of([1, 2, 3, 4, 5])
.first(x => x > 3);
// 4
Seq.of([1, 2, 3, 4, 5])
.last();
// 5
Seq.of([1, 2, 3, 4, 5])
.last(x => x < 3);
// 2
Seq.of([1, 2, 3, 4, 5])
.every(x => x <= 5);
// true
Seq.of([1, 2, 3, 4, 5])
.some(x => x === 3);
// true
Seq.of([1, 2, 3, 4, 5])
.includes(3);
// true
Seq.of([1, 2, 3, 4, 5])
.concat(Seq.of([6, 7, 8)]))
.toArray();
// [1, 2, 3, 4, 5, 6, 7, 8]
Seq.of([1, 2, 3, 4, 5])
.reverse()
.toArray();
// [5, 4, 3, 2, 1]
Seq.of([1, 2, 3, 4, 5])
.slice(2, 4)
.toArray();
// [3, 4, 5]
FAQs
Implements common array methods in a lazy manner. Nothing more.
The npm package lazily receives a total of 42 weekly downloads. As such, lazily popularity was classified as not popular.
We found that lazily demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.