Travis build: 909

This commit is contained in:
30secondsofcode
2018-12-17 09:43:27 +00:00
parent 90d5c1622f
commit b933d486c6
20 changed files with 1555 additions and 1894 deletions

View File

@ -6,7 +6,6 @@ Use `Array.prototype.filter()` to find array elements that return truthy values
The `func` is invoked with three arguments (`value, index, array`).
```js
const remove = (arr, func) =>
Array.isArray(arr)
? arr.filter(func).reduce((acc, val) => {