diff --git a/README.md b/README.md index a64842de8..b68f397e5 100644 --- a/README.md +++ b/README.md @@ -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