Bump to v4.14.0.

This commit is contained in:
John-David Dalton
2016-07-24 09:52:22 -07:00
parent 6b3e0da93c
commit 51ed7e7707
231 changed files with 1136 additions and 820 deletions

4
at.js
View File

@@ -1,6 +1,6 @@
import baseAt from './_baseAt.js';
import baseFlatten from './_baseFlatten.js';
import rest from './rest.js';
import baseRest from './_baseRest.js';
/**
* Creates an array of values corresponding to `paths` of `object`.
@@ -19,7 +19,7 @@ import rest from './rest.js';
* _.at(object, ['a[0].b.c', 'a[1]']);
* // => [3, 4]
*/
var at = rest(function(object, paths) {
var at = baseRest(function(object, paths) {
return baseAt(object, baseFlatten(paths, 1));
});