We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Check if any value satisfies a test.
Similar: some, every.
function some(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.some(x, v => v > 10); // → false map.some(x, v => v < 0); // → true