Update doc examples to ES2015.

This commit is contained in:
John-David Dalton
2017-01-10 01:45:20 -08:00
parent 8c97051909
commit ef2c4bf5e1
113 changed files with 188 additions and 228 deletions

View File

@@ -21,21 +21,17 @@ const nativeMax = Math.max;
* @returns {Function} Returns the new function.
* @example
*
* var say = spread(function(who, what) {
* return who + ' says ' + what;
* });
* const say = spread((who, what) => `${ who } says ${ what }`);
*
* say(['fred', 'hello']);
* // => 'fred says hello'
*
* var numbers = Promise.all([
* const numbers = Promise.all([
* Promise.resolve(40),
* Promise.resolve(36)
* ]);
*
* numbers.then(spread(function(x, y) {
* return x + y;
* }));
* numbers.then(spread((x, y) => x + y));
* // => a Promise of 76
*/
function spread(func, start) {