Bump to v4.7.0.

This commit is contained in:
John-David Dalton
2016-03-26 00:00:36 -07:00
parent a83b4ebd53
commit ce0b51888c
394 changed files with 1789 additions and 841 deletions

View File

@@ -5,6 +5,8 @@ import assignWith from './assignWith';
import create from './create';
import defaults from './defaults';
import defaultsDeep from './defaultsDeep';
import entries from './entries';
import entriesIn from './entriesIn';
import extend from './extend';
import extendWith from './extendWith';
import findKey from './findKey';
@@ -45,12 +47,13 @@ import valuesIn from './valuesIn';
export default {
assign, assignIn, assignInWith, assignWith, create,
defaults, defaultsDeep, extend, extendWith, findKey,
findLastKey, forIn, forInRight, forOwn, forOwnRight,
functions, functionsIn, get, has, hasIn,
invert, invertBy, invoke, keys, keysIn,
mapKeys, mapValues, merge, mergeWith, omit,
omitBy, pick, pickBy, result, set,
setWith, toPairs, toPairsIn, transform, unset,
update, updateWith, values, valuesIn
defaults, defaultsDeep, entries, entriesIn, extend,
extendWith, findKey, findLastKey, forIn, forInRight,
forOwn, forOwnRight, functions, functionsIn, get,
has, hasIn, invert, invertBy, invoke,
keys, keysIn, mapKeys, mapValues, merge,
mergeWith, omit, omitBy, pick, pickBy,
result, set, setWith, toPairs, toPairsIn,
transform, unset, update, updateWith, values,
valuesIn
};