mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
12 lines
196 B
JavaScript
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
|
|
};
|