Travis build: 1362

This commit is contained in:
30secondsofcode
2018-01-23 20:21:03 +00:00
parent 2bf4ada6bf
commit d4900ace5e

View File

@ -4807,6 +4807,7 @@ const omitBy = (obj, fn) =>
```js
omitBy({ a: 1, b: '2', c: 3 }, x => typeof x === 'number'); // { b: '2' }
```
</details>