Files
lodash/math.js
2015-03-06 01:11:05 -08:00

12 lines
196 B
JavaScript

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
};