1.0.4 • Published 6 years ago

status-converter v1.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

Netki Status Converter

https://www.npmjs.com/package/status-converter

Install

npm install --save status-converter

Information

Convert.convertStatus(status) : converts status to 'failed' or 'completed' to 'declined' or 'approved', otherwise it will return the original status.

Convert.convertTransactionMessage(message) : replaces any 'failed' or 'completed' statuses in the transaction message with 'DECLINED' or 'APPROVED'.

Example Use Cases

import Convert from 'status-converter';

Convert.convertStatus('failed') // => converts 'failed' to 'declined'

Convert.convertStatus('completed') // => converts 'completed' to 'approved'

Convert.convertTransactionMessage('transaction changed to failed status' ) // => 'transaction changed to DECLINED status'

Convert.convertTransactionMessage('transaction changed to completed status' ) // => 'transaction changed to APPROVED status'