🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

callbag-drop-repeats

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

callbag-drop-repeats

Callbag operator that Drops consecutive duplicate

1.0.0
Source
npm
Version published
Weekly downloads
83
38.33%
Maintainers
1
Weekly downloads
 
Created
Source

callbag-drop-repeats

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

Examples

Listenables

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'
  })
);

Pullables

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' } 
);

Keywords

callbag

FAQs

Package last updated on 23 Mar 2018

Did you know?

Socket

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.

Install

Related posts