Bump to v3.0.0.

This commit is contained in:
John-David Dalton
2015-01-08 00:37:01 -08:00
committed by jdalton
commit 9b7c4d6761
349 changed files with 23184 additions and 0 deletions

17
utility.js Normal file
View File

@@ -0,0 +1,17 @@
define(['./utility/attempt', './utility/callback', './utility/constant', './utility/identity', './utility/iteratee', './utility/matches', './utility/mixin', './utility/noop', './utility/property', './utility/propertyOf', './utility/range', './utility/times', './utility/uniqueId'], function(attempt, callback, constant, identity, iteratee, matches, mixin, noop, property, propertyOf, range, times, uniqueId) {
return {
'attempt': attempt,
'callback': callback,
'constant': constant,
'identity': identity,
'iteratee': iteratee,
'matches': matches,
'mixin': mixin,
'noop': noop,
'property': property,
'propertyOf': propertyOf,
'range': range,
'times': times,
'uniqueId': uniqueId
};
});