-
Notifications
You must be signed in to change notification settings - Fork 0
hasEntry
Subhajit Sahu edited this page Jun 28, 2020
·
11 revisions
Checks if entries has an entry. 🏃 📼 📦 🌔 📒
Alternatives: has, hasValue, hasEntry, hasSubset.
Similar: entry, hasEntry.
entries.hasEntry(x, e, [fc], [fm]);
// x: entries
// e: entry?
// fc: compare function (a, b)
// fm: map function (v, k, x)
const entries = require('extra-entries');
var x = [['a', 1], ['b', 2], ['c', -3]];
entries.hasEntry(x, ['c', 3]);
// false
entries.hasEntry(x, ['c', 3], (a, b) => Math.abs(a) - Math.abs(b));
// true
entries.hasEntry(x, ['c', 3], null, v => Math.abs(v));
// true