2015-04-20 09:28:11 +00:00
|
|
|
/*
|
|
|
|
* Constats
|
|
|
|
* Keys must be UPPERCASE
|
|
|
|
* Values Can be a constant value or a function returning a value
|
|
|
|
* this function doesn't take any arguments (use case: random constats)
|
|
|
|
*/
|
2020-06-09 13:58:42 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
Object.defineProperty(exports, '__esModule', {
|
|
|
|
value: true
|
|
|
|
});
|
2015-04-20 09:28:11 +00:00
|
|
|
exports['default'] = {
|
2020-06-09 13:58:42 +00:00
|
|
|
'PI': Math.PI,
|
|
|
|
'E': Math.E,
|
|
|
|
'RAND': Math.random
|
2015-04-20 09:28:11 +00:00
|
|
|
};
|
2020-06-09 13:58:42 +00:00
|
|
|
module.exports = exports['default'];
|