mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 07:17:50 +00:00
19 lines
827 B
JavaScript
19 lines
827 B
JavaScript
define(['./utility/attempt', './utility/callback', './utility/constant', './utility/identity', './utility/iteratee', './utility/matches', './utility/matchesProperty', './utility/mixin', './utility/noop', './utility/property', './utility/propertyOf', './utility/range', './utility/times', './utility/uniqueId'], function(attempt, callback, constant, identity, iteratee, matches, matchesProperty, mixin, noop, property, propertyOf, range, times, uniqueId) {
|
|
return {
|
|
'attempt': attempt,
|
|
'callback': callback,
|
|
'constant': constant,
|
|
'identity': identity,
|
|
'iteratee': iteratee,
|
|
'matches': matches,
|
|
'matchesProperty': matchesProperty,
|
|
'mixin': mixin,
|
|
'noop': noop,
|
|
'property': property,
|
|
'propertyOf': propertyOf,
|
|
'range': range,
|
|
'times': times,
|
|
'uniqueId': uniqueId
|
|
};
|
|
});
|