Files
lodash/math.js
John-David Dalton 75c633becb Bump to v3.10.0.
2015-12-16 17:52:15 -08:00

12 lines
304 B
JavaScript

define(['./math/add', './math/ceil', './math/floor', './math/max', './math/min', './math/round', './math/sum'], function(add, ceil, floor, max, min, round, sum) {
return {
'add': add,
'ceil': ceil,
'floor': floor,
'max': max,
'min': min,
'round': round,
'sum': sum
};
});