lodash-es
Version:
The modern build of lodash exported as ES modules.
18 lines (16 loc) • 348 B
JavaScript
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
};