Bump to v3.4.0.

This commit is contained in:
jdalton
2015-02-28 22:12:58 -08:00
parent 1e05116bcb
commit d01a1e4ef3
50 changed files with 477 additions and 317 deletions

11
math.js Normal file
View File

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