Travis build: 1435

This commit is contained in:
30secondsofcode
2018-01-26 11:40:48 +00:00
parent 9cae419013
commit 9ff0b8e2d7
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
```

View File

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