source: imaps-frontend/node_modules/lodash-es/math.default.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 605 bytes
RevLine 
[d565449]1import add from './add.js';
2import ceil from './ceil.js';
3import divide from './divide.js';
4import floor from './floor.js';
5import max from './max.js';
6import maxBy from './maxBy.js';
7import mean from './mean.js';
8import meanBy from './meanBy.js';
9import min from './min.js';
10import minBy from './minBy.js';
11import multiply from './multiply.js';
12import round from './round.js';
13import subtract from './subtract.js';
14import sum from './sum.js';
15import sumBy from './sumBy.js';
16
17export default {
18 add, ceil, divide, floor, max,
19 maxBy, mean, meanBy, min, minBy,
20 multiply, round, subtract, sum, sumBy
21};
Note: See TracBrowser for help on using the repository browser.