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

View File

@@ -2,8 +2,8 @@ import arrayMap from './_arrayMap.js';
import baseDifference from './_baseDifference.js';
import baseFlatten from './_baseFlatten.js';
import basePick from './_basePick.js';
import baseRest from './_baseRest.js';
import getAllKeysIn from './_getAllKeysIn.js';
import rest from './rest.js';
import toKey from './_toKey.js';
/**
@@ -25,7 +25,7 @@ import toKey from './_toKey.js';
* _.omit(object, ['a', 'c']);
* // => { 'b': '2' }
*/
var omit = rest(function(object, props) {
var omit = baseRest(function(object, props) {
if (object == null) {
return {};
}