Files
lodash/utility.js
John-David Dalton 3ccb5e7da3 Bump to v3.2.0.
2015-12-16 17:46:22 -08:00

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
};
});