mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
10 lines
255 B
JavaScript
10 lines
255 B
JavaScript
module.exports = {
|
|
'add': require('./math/add'),
|
|
'ceil': require('./math/ceil'),
|
|
'floor': require('./math/floor'),
|
|
'max': require('./math/max'),
|
|
'min': require('./math/min'),
|
|
'round': require('./math/round'),
|
|
'sum': require('./math/sum')
|
|
};
|