mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
21 lines
935 B
JavaScript
21 lines
935 B
JavaScript
define(['./utility/attempt', './utility/callback', './utility/constant', './utility/identity', './utility/iteratee', './utility/matches', './utility/matchesProperty', './utility/method', './utility/methodOf', './utility/mixin', './utility/noop', './utility/property', './utility/propertyOf', './utility/range', './utility/times', './utility/uniqueId'], function(attempt, callback, constant, identity, iteratee, matches, matchesProperty, method, methodOf, mixin, noop, property, propertyOf, range, times, uniqueId) {
|
|
return {
|
|
'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
|
|
};
|
|
});
|