Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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]);
source(0, iterate(x => console.log(x)); // 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 282 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.