Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timgabets/atm-states
atm-states npm module
https://github.com/timgabets/atm-states
Last synced: 9 days ago
JSON representation
atm-states npm module
- Host: GitHub
- URL: https://github.com/timgabets/atm-states
- Owner: timgabets
- Created: 2017-10-10T11:00:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-12-05T12:25:51.000Z (about 7 years ago)
- Last Synced: 2024-12-17T05:46:36.186Z (about 1 month ago)
- Language: JavaScript
- Size: 108 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
Awesome Lists containing this project
README
# atm-states
![Travis CI build badge](https://travis-ci.org/timgabets/atm-states.svg?branch=master)
[![Maintainability](https://api.codeclimate.com/v1/badges/e01eda6d8b5e0fb210fe/maintainability)](https://codeclimate.com/github/timgabets/atm-states/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/e01eda6d8b5e0fb210fe/test_coverage)](https://codeclimate.com/github/timgabets/atm-states/test_coverage)ATM States Service implementation, used by [Electron ATM](https://github.com/timgabets/electron-atm) and [ATM State Navigator](https://github.com/timgabets/states-navigator) applications. The module may be used for NDC ATM states parsing and processing.
## To use:
```javascript
const StatesService = require('atm-states');var s = new StatesService();
s.getEntry('000ABCDEFGHIJKLMNOPQRSTUVWXY', 1)
> 'A'
s.getEntry('000A001002003004005006007008', 2)
> '001'
s.parseState('000A870500128002002002001127')
>{ description: 'Card read state',
number: '000',
type: 'A',
screen_number: '870',
good_read_next_state: '500',
error_screen_number: '128',
read_condition_1: '002',
read_condition_2: '002',
read_condition_3: '002',
card_return_flag: '001',
no_fit_match_next_state: '127',
states_to: [ '500', '127' ] }```