Bump to v3.4.0.

This commit is contained in:
John-David Dalton
2015-12-16 17:48:03 -08:00
parent 7a82a3d77b
commit 4ce1d5ddd3
50 changed files with 879 additions and 584 deletions

8
math.js Normal file
View File

@@ -0,0 +1,8 @@
define(['./math/add', './math/max', './math/min', './math/sum'], function(add, max, min, sum) {
return {
'add': add,
'max': max,
'min': min,
'sum': sum
};
});