Add any, anyBy, all, allBy, none, noneBy

This commit is contained in:
Angelos Chalaris
2018-02-14 11:46:15 +02:00
parent 096fa381f0
commit dd9bbaac65
20 changed files with 1185 additions and 953 deletions

2
test/all/all.js Normal file
View File

@ -0,0 +1,2 @@
const all = arr => arr.every(Boolean);
module.exports = all;