Skip to content

reject$

Subhajit Sahu edited this page Jun 12, 2020 · 14 revisions

Discards entries which pass a test. 🏃 📼 📦 🌔 📒

Alternatives: reject, reject$.
Similar: map, reduce, filter, filterAt, reject, rejectAt.

object.reject$(x, fn, [ths]);
// x:   an object (updated)
// fn:  test function (v, k, x)
// ths: this argument
// --> x
const object = require('extra-object');

var x = {a: 1, b: 2, c: 3, d: 4, e: 5};
object.reject$(x, v => v % 2 === 1);
// { b: 2, d: 4 }

x;
// { b: 2, d: 4 }

var x = {a: 1, b: 2, c: 3, d: 4, e: 5};
object.reject$(x, v => v % 2 === 0);
// { a: 1, c: 3, e: 5 }

references

Clone this wiki locally