Travis build: 1187

This commit is contained in:
30secondsofcode
2018-01-11 11:53:19 +00:00
parent 646c3477e6
commit 1adec8ce3f
4 changed files with 30 additions and 2 deletions

View File

@ -9,5 +9,5 @@ const findLast = (arr, fn) => arr.filter(fn).slice(-1);
```
```js
findLast([1, 2, 3, 4], n => n % 2 === 1) // 3
findLast([1, 2, 3, 4], n => n % 2 === 1); // 3
```

View File

@ -32,6 +32,7 @@ const httpPost = (url, callback, data = null, err = console.error) => {
const newPost = {
"userId": 1,
"id": 1337,