lists-some

Check if atleast one value in lists passes the test, like Array.some().

Usage no npm install needed!

<script type="module">
  import listsSome from 'https://cdn.skypack.dev/lists-some';
</script>

README

lists-some

NOTE: lists-some was renamed to @extra-lists/some. NPM

Check if atleast one value in lists passes the test, like Array.some().

const some = require('lists-some');
// some(<lists>, <test function>, [this])

a = ['defence', 'of', 'the', 'ancients'];
some([a.keys(), a], (v) => v.length===2);
// true
a = {c1: 'sniper', c2: 'invoker', c3: 'kunkka'};
some([Object.keys(a), Object.values(a)], (v, i, lst) => !v.endsWith('er'));
// true