Travis build: 1435

This commit is contained in:
30secondsofcode
2018-01-26 11:40:48 +00:00
parent d7bad42d12
commit 7fa05f6195
4 changed files with 95 additions and 17 deletions

View File

@ -15,5 +15,5 @@ const sortedIndexBy = (arr, n, fn) => {
```
```js
sortedIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, o => o.x); // 0
sortedIndexBy([{ x: 4 }, { x: 5 }], { x: 4 }, o => o.x); // 0
```