Travis build: 1497

This commit is contained in:
30secondsofcode
2019-10-13 15:37:11 +00:00
parent d299301561
commit 293faf083e
12 changed files with 95 additions and 88 deletions

View File

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