Fix broken snippet breaking the builder

This commit is contained in:
Angelos Chalaris
2018-01-23 22:19:28 +02:00
parent c4a78512b2
commit 50c77d836c

View File

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