blob: 4ec58aa913aa55c743d06ff98fca0cc8e299619c [file] [log] [blame] [edit]
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
}