UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

6 lines (4 loc) 156 B
export function none(predicate, list){ if (arguments.length === 1) return _list => none(predicate, _list) return list.filter(predicate).length === 0 }