Travis build: 1265

This commit is contained in:
30secondsofcode
2019-07-01 05:04:31 +00:00
parent f58b7faf9e
commit d76a5bf575
4 changed files with 5 additions and 2 deletions

View File

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