
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
callbag-concat
Advanced tools
/**
npm install callbag-concatconst fromIter = require('callbag-from-iter');
const iterate = require('callbag-iterate');
const concat = require('callbag-concat');
const source = concat(fromIter([10,20,30]), fromIter(['a','b']));
iterate(x => console.log(x))(source); // 10
// 20
// 30
// a
// b
*/
const UNIQUE = {};
const concat = (...sources) => (start, sink) => { if (start !== 0) return; const n = sources.length; if (n === 0) { sink(0, () => {}); sink(2); return; } let i = 0; let sourceTalkback; let lastPull = UNIQUE; const talkback = (t, d) => { if (t === 1) lastPull = d; sourceTalkback(t, d); }; (function next() { if (i === n) { sink(2); return; } sources[i](0, (t, d) => { if (t === 0) { sourceTalkback = d; if (i === 0) sink(0, talkback); else if (lastPull !== UNIQUE) sourceTalkback(1, lastPull); } else if (t === 2 && d) { sink(2, d); } else if (t === 2) { i++; next(); } else { sink(t, d); } }); })(); };
export default concat;
FAQs
Callbag factory that concatenates data from multiple callbag sources
The npm package callbag-concat receives a total of 3,312 weekly downloads. As such, callbag-concat popularity was classified as popular.
We found that callbag-concat 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 discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.