Travis build: 1298

This commit is contained in:
30secondsofcode
2019-07-19 06:31:59 +00:00
parent b1f7b1d4da
commit 82ff65e607
4 changed files with 61 additions and 58 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