All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.README.md Maven / Gradle / Ivy

The newest version!
# Enums

## Usage

```js
var status = new Enums([
  {
    name: 'CLOSED',
    code: '1',
    message: 'Shop close'
  },
  {
    name: 'OPENED',
    code: '2',
    message: 'Shop open'
  }
]);

console.log(status.CLOSED);
console.log(status.OPENED);
```




© 2015 - 2024 Weber Informatics LLC | Privacy Policy