Travis build: 1170

This commit is contained in:
30secondsofcode
2019-05-27 15:43:01 +00:00
parent f5f6b3eda9
commit 0dca4d0374
5 changed files with 5961 additions and 5958 deletions

View File

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