
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
callbag-from-iter
Advanced tools
Convert a JS Iterable or Iterator to a callbag pullable source (it only sends data when requested).
npm install callbag-from-iter
Convert an Iterable:
const fromIter = require('callbag-from-iter');
const iterate = require('callbag-iterate');
const source = fromIter([10, 20, 30, 40]);
iterate(x => console.log(x))(source); // 10
// 20
// 30
// 40
Convert an Iterator:
const fromIter = require('callbag-from-iter');
const iterate = require('callbag-iterate');
const source = fromIter([10, 20, 30, 40].entries());
iterate(x => console.log(x))(source); // [0,10]
// [1,20]
// [2,30]
// [3,40]
FAQs
Convert an iterable or iterator to a callbag pullable source
The npm package callbag-from-iter receives a total of 288 weekly downloads. As such, callbag-from-iter popularity was classified as not popular.
We found that callbag-from-iter demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.