Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
callbag-drop-repeats
Advanced tools
Drops consecutive duplicate values. Works on either pullable or listenable sources.
Takes an optional custom predicate function.
If not provided then (a, b) => a === b
will be used.
npm install callbag-drop-repeats
const dropRepeats = require('callbag-drop-repeats');
const { forEach, map, interval, pipe, take } = require('callbag-basics');
pipe(
interval(1000),
take(3),
map(() => 'Always me, but once'),
dropRepeats(),
forEach((x) => {
console.log(x); // 'Always me, but once'
})
);
Without a predicate function:
const dropRepeats = require('callbag-drop-repeats');
const { forEach, fromIter, pipe } = require('callbag-basics');
pipe(
fromIter([0, 0, 0, 1]),
dropRepeats(),
forEach((x) => {
console.log(x); // 0
}) // 1
);
With a predicate function:
const dropRepeats = require('callbag-drop-repeats');
const { forEach, fromIter, pipe } = require('callbag-basics');
pipe(
fromIter([{ name: 'A' }, { name: 'A' }, { name: 'B' }]),
dropRepeats((prev, curr) => prev.name === curr.name),
forEach((x) => {
console.log(x); // { name: 'A' }
}) // { name: 'B' }
);
FAQs
Callbag operator that Drops consecutive duplicate
The npm package callbag-drop-repeats receives a total of 635 weekly downloads. As such, callbag-drop-repeats popularity was classified as not popular.
We found that callbag-drop-repeats 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.