Fix broken snippet breaking the builder

This commit is contained in:
Angelos Chalaris
2018-01-23 22:19:28 +02:00
parent 57e3c21586
commit 2bf4ada6bf

View File

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