Travis build: 1674

This commit is contained in:
30secondsofcode
2018-02-14 11:32:14 +00:00
parent c132bcd2db
commit b4b0909a1d
8 changed files with 158 additions and 8 deletions

View File

@ -9,5 +9,5 @@ const noneBy = (arr, fn) => !arr.some(fn);
```
```js
noneBy([0,1,3,0], x => x == 2); // true
noneBy([0, 1, 3, 0], x => x == 2); // true
```