Skip to main content
Module

x/rambda/none.js

Faster and smaller alternative to Ramda
Go to Latest
File
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 true }
return false}