deno.land / x / rambda@v9.1.1 / source / none.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
export function none(predicate, list){ if (arguments.length === 1) return _list => none(predicate, _list)
for (let i = 0; i < list.length; i++){ if (predicate(list[ i ])) return false }
return true}
rambda

Version Info

Tagged at
2 months ago