Travis build: 961

This commit is contained in:
30secondsofcode
2019-01-16 21:43:21 +00:00
parent 0e12dc40d5
commit 7dffb51b2f
10 changed files with 23 additions and 29 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) => {