-
Notifications
You must be signed in to change notification settings - Fork 0
filterAt
Subhajit Sahu edited this page Dec 22, 2022
·
15 revisions
Keep entries with given keys.
function filterAt(x, ks)
// x: entries
// ks: keys
const entries = require('extra-entries');
var x = [["a", 1], ["b", 2], ["c", 3], ["d", 4], ["e", 5]];
[...entries.filterAt(x, ["a", "c", "e"])];
// → [ [ "a", 1 ], [ "c", 3 ], [ "e", 5 ] ]
[...entries.filterAt(x, ["b", "d"])];
// → [ [ "b", 2 ], [ "d", 4 ] ]
- Data.List.filter: Haskell
- Array.prototype.filter: MDN web docs
- array_filter: PHP
- _.remove: lodash
- _.without: lodash
- _.compact: lodash
- _.pull: lodash
- _.pullAll: lodash
- _.pullAllBy: lodash
- _.pullAllWith: lodash
- Array.filter: sugarjs
- Array.exclude: sugarjs
- Array.compact: sugarjs
- array-tools.where: @75lb