9 lines
256 B
JavaScript
9 lines
256 B
JavaScript
|
/**
|
||
|
* Module which stores constant values. These constants are mutable, however
|
||
|
* generally should not be changed unless a value is being added. Values are
|
||
|
* typically initialized during the app's preloader.
|
||
|
* @module enumerator
|
||
|
*/
|
||
|
exports.enum = {
|
||
|
|
||
|
}
|