mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Bump to v3.0.0.
This commit is contained in:
53
object.js
Normal file
53
object.js
Normal file
@@ -0,0 +1,53 @@
|
||||
import assign from './object/assign';
|
||||
import create from './object/create';
|
||||
import defaults from './object/defaults';
|
||||
import extend from './object/extend';
|
||||
import findKey from './object/findKey';
|
||||
import findLastKey from './object/findLastKey';
|
||||
import forIn from './object/forIn';
|
||||
import forInRight from './object/forInRight';
|
||||
import forOwn from './object/forOwn';
|
||||
import forOwnRight from './object/forOwnRight';
|
||||
import functions from './object/functions';
|
||||
import has from './object/has';
|
||||
import invert from './object/invert';
|
||||
import keys from './object/keys';
|
||||
import keysIn from './object/keysIn';
|
||||
import mapValues from './object/mapValues';
|
||||
import merge from './object/merge';
|
||||
import methods from './object/methods';
|
||||
import omit from './object/omit';
|
||||
import pairs from './object/pairs';
|
||||
import pick from './object/pick';
|
||||
import result from './object/result';
|
||||
import transform from './object/transform';
|
||||
import values from './object/values';
|
||||
import valuesIn from './object/valuesIn';
|
||||
|
||||
export default {
|
||||
'assign': assign,
|
||||
'create': create,
|
||||
'defaults': defaults,
|
||||
'extend': extend,
|
||||
'findKey': findKey,
|
||||
'findLastKey': findLastKey,
|
||||
'forIn': forIn,
|
||||
'forInRight': forInRight,
|
||||
'forOwn': forOwn,
|
||||
'forOwnRight': forOwnRight,
|
||||
'functions': functions,
|
||||
'has': has,
|
||||
'invert': invert,
|
||||
'keys': keys,
|
||||
'keysIn': keysIn,
|
||||
'mapValues': mapValues,
|
||||
'merge': merge,
|
||||
'methods': methods,
|
||||
'omit': omit,
|
||||
'pairs': pairs,
|
||||
'pick': pick,
|
||||
'result': result,
|
||||
'transform': transform,
|
||||
'values': values,
|
||||
'valuesIn': valuesIn
|
||||
};
|
||||
Reference in New Issue
Block a user