Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/timgabets/atm-state-levels

A helper service to work with ATM state logical levels
https://github.com/timgabets/atm-state-levels

Last synced: about 2 months ago
JSON representation

A helper service to work with ATM state logical levels

Awesome Lists containing this project

README

        

# [atm-state-levels](https://www.npmjs.com/package/atm-state-levels)

A helper service to work with ATM state logical levels, used by [Electron ATM](https://github.com/timgabets/electron-atm) and [ATM State Navigator](https://github.com/timgabets/states-navigator) applications.

## To Use:

```javascript
>var LevelsService = require('atm-state-levels');
>var l = new LevelsService();
>l.getLevelSize(17)
0
> l.addState('903', 17)
true
> l.getLevelSize(17)
1
```