math.js 304 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 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 }; });