Bump to v4.9.0.

This commit is contained in:
John-David Dalton
2016-04-07 21:49:55 -07:00
parent 7c17af79c7
commit 7d39d58e43
53 changed files with 428 additions and 317 deletions

View File

@@ -15,14 +15,14 @@ var baseInvoke = require('./_baseInvoke'),
* @example
*
* var objects = [
* { 'a': { 'b': { 'c': _.constant(2) } } },
* { 'a': { 'b': { 'c': _.constant(1) } } }
* { 'a': { 'b': _.constant(2) } },
* { 'a': { 'b': _.constant(1) } }
* ];
*
* _.map(objects, _.method('a.b.c'));
* _.map(objects, _.method('a.b'));
* // => [2, 1]
*
* _.map(objects, _.method(['a', 'b', 'c']));
* _.map(objects, _.method(['a', 'b']));
* // => [2, 1]
*/
var method = rest(function(path, args) {