Skip to content

doktordirk/callbag-map-when

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

/**
 * callbag-map-when
 * -----------
 *
 * Callbag operator that applies a transformation function only to items that
 * satisfy the predicate function. Works as filter() followed by map()
 * Works on either pullable or listenable sources.
 *
 * `npm install callbag-map-when`
 *
 * Example:
 *
 *     const mapWhen = require('callbag-map-when');
 *     const forEach = require('callbag-for-each');
 *     const fromIter = require('callbag-from-iter');
 *     const pipe = require('callbag-pipe');
 *
 *     pipe(
 *       fromIter([1, 2, 3, 4]),
 *       mapWhen(n => n % 2 === 0, n => n * 10),
 *       forEach((n) => {
 *         console.log(n); // 20
 *                         // 40
 *       })
 *     );
 * 
 * @param {Function} f The predicate filter function
 * @param {Function} m The map transformation function
 * @returns {Function} A function of the source Callbag
 */

const mapWhen = (f, m) => (source) => (start, sink) => {
  let ask;
  start === 0 && source(start, (t, d) => {
    if (start === t) ask = d;
    if (t === 1) {
      try {
        f(d) ? sink(t, m(d)) : ask(t);
      } catch(e) {
        sink(2, e);
      }
      return;
    }
    sink(t, d);
  });
};

module.exports = mapWhen;

About

Callbag operator that maps over values that satisfies a predicate. AKA filterMap

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%