Bump to v4.0.0.

This commit is contained in:
John-David Dalton
2015-09-17 17:52:09 -07:00
parent 1d77dfa4b7
commit 54e7baecc3
675 changed files with 11257 additions and 8085 deletions

18
math.default.js Normal file
View File

@@ -0,0 +1,18 @@
import add from './add';
import ceil from './ceil';
import floor from './floor';
import max from './max';
import maxBy from './maxBy';
import mean from './mean';
import min from './min';
import minBy from './minBy';
import round from './round';
import subtract from './subtract';
import sum from './sum';
import sumBy from './sumBy';
export default {
add, ceil, floor, max, maxBy,
mean, min, minBy, round, subtract,
sum, sumBy
};