17 lines
380 B
JavaScript
17 lines
380 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', {
|
|
value: true
|
|
});
|
|
/*
|
|
* 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)
|
|
*/
|
|
exports['default'] = {
|
|
PI: Math.PI,
|
|
E: Math.E,
|
|
RAND: Math.random
|
|
};
|
|
module.exports = exports['default']; |