Manual build

This commit is contained in:
Angelos Chalaris
2019-05-15 12:41:42 +03:00
parent b301058c76
commit 905402226a
7 changed files with 1967 additions and 1956 deletions

View File

@ -17,6 +17,7 @@ const checkProp = (predicate, prop) => obj => !!predicate(obj[prop]);
const lengthIs4 = checkProp(l => l === 4, 'length');
lengthIs4([]); // false
lengthIs4([1,2,3,4]); // true