Travis build: 173

This commit is contained in:
Travis CI
2017-12-23 09:54:05 +00:00
parent 8caafdf1d9
commit b37895a638

View File

@ -180,7 +180,7 @@ Promise.resolve( [ 1, 2, 3 ] ).then( call('map', x => 2 * x ) ).then( console.lo
const map = call.bind(null, 'map')
Promise.resolve( [ 1, 2, 3 ] ).then( map( x => 2 * x ) ).then( console.log ) //[ 2, 4, 6 ]
*/
```
```
[⬆ back to top](#table-of-contents)
@ -199,7 +199,7 @@ let p2 = Promise.resolve(2)
let p3 = new Promise((resolve) => setTimeout(resolve,2000,3))
Pall(p1, p2, p3).then(console.log)
*/
```
```
[⬆ back to top](#table-of-contents)
@ -220,7 +220,7 @@ mergePerson(b) // == b
b = {}
Object.assign(b, a) // == b
*/
```
```
[⬆ back to top](#table-of-contents)
@ -259,7 +259,7 @@ const arrayMax = spreadOver(Math.max)
arrayMax([1,2,3]) // -> 3
arrayMax([1,2,4]) // -> 4
*/
```
```
[⬆ back to top](#table-of-contents)
## Array