Skip to content
Subhajit Sahu edited this page Dec 5, 2022 · 16 revisions

Check if all values satisfy a test.

Similar: some, every.


function every(x, ft)
// x:  a map
// ft: test function (v, k, x)
const map = require('extra-map');

var x = new Map([['a', 1], ['b', 2], ['c', -3], ['d', -4]]);
map.every(x, v => v > 0);
// → false

map.every(x, v => v > -10);
// → true


References

Clone this wiki locally