Updated all, any, none
Merged them with their by counterparts.
This commit is contained in:
@ -1,2 +1,2 @@
|
||||
const all = arr => arr.every(Boolean);
|
||||
const all = (arr, fn = Boolean) => arr.every(fn);
|
||||
module.exports = all;
|
||||
Reference in New Issue
Block a user