Travis build: 692

This commit is contained in:
30secondsofcode
2018-10-26 15:37:27 +00:00
parent ccdf861848
commit e86f79b486
10 changed files with 4 additions and 19 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) => {