Bump to v3.10.0.

This commit is contained in:
jdalton
2015-06-14 22:21:58 -07:00
parent 6ee2b9a7b8
commit 4bd2890bbd
121 changed files with 777 additions and 649 deletions

View File

@@ -1,11 +1,17 @@
import add from './math/add';
import ceil from './math/ceil';
import floor from './math/floor';
import max from './math/max';
import min from './math/min';
import round from './math/round';
import sum from './math/sum';
export default {
'add': add,
'ceil': ceil,
'floor': floor,
'max': max,
'min': min,
'round': round,
'sum': sum
};