Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 758 Bytes

File metadata and controls

24 lines (17 loc) · 758 Bytes

nm-ebcdic-converter

A simple Node module for converting EBCDIC char to ASCII char and vice-versa.

Technologies/Languages

Usage

For this version use require. import will be provided in the future.

Sample:

const EBCDIC = require('nm-ebcdic-converter');

var ascii = EBCDIC.toASCII('C6');

Or if you prefer you can play around with StackBlitz