
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
co-stream-map
Advanced tools
Map a co stream over each chunk of another co stream.
Given a stream twice that emits strings and a stream
chars the emits a string's chars, map chars over twice.
var map = require('co-stream-map');
// a stream that emits `str` twice
function twice(str){
var i = 0;
return function*(end){
if (end) return;
if (++i <3) return str;
}
}
// a stream that emits `str` split up into chars
function chars(str){
return function*(end){
if (end) return;
var first = str[0];
str = str.slice(1);
return first;
}
}
var source = twice('bar');
var read = map(source, chars);
assert.equal('b', yield read());
assert.equal('a', yield read());
assert.equal('r', yield read());
assert.equal('b', yield read());
assert.equal('a', yield read());
assert.equal('r', yield read());
assert(!(yield read()));
For every chunk stream emits, call fn with that chunk and read from the
returned stream.
Returns a readable stream.
$ npm install co-stream-map
MIT
FAQs
Map streams over streams
We found that co-stream-map 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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.