UNPKG

lodash-es

Version:

The modern build of lodash exported as ES modules.

36 lines (34 loc) 1.06 kB
import attempt from './utility/attempt'; import callback from './utility/callback'; import constant from './utility/constant'; import identity from './utility/identity'; import iteratee from './utility/iteratee'; import matches from './utility/matches'; import matchesProperty from './utility/matchesProperty'; import method from './utility/method'; import methodOf from './utility/methodOf'; import mixin from './utility/mixin'; import noop from './utility/noop'; import property from './utility/property'; import propertyOf from './utility/propertyOf'; import range from './utility/range'; import times from './utility/times'; import uniqueId from './utility/uniqueId'; export default { 'attempt': attempt, 'callback': callback, 'constant': constant, 'identity': identity, 'iteratee': iteratee, 'matches': matches, 'matchesProperty': matchesProperty, 'method': method, 'methodOf': methodOf, 'mixin': mixin, 'noop': noop, 'property': property, 'propertyOf': propertyOf, 'range': range, 'times': times, 'uniqueId': uniqueId };