@shreenu21/cp037-converter
v1.0.3
Published
A lightweight Node.js library to convert between ASCII and EBCDIC CP037 (IBM037) encoding formats, supporting legacy system integration.
Maintainers
Readme
cp037-converter
Convert between ASCII and EBCDIC CP037 (IBM037) encoding.
Install
npm i @shreenu21/cp037-converterInstall
const {
encodeAsciiToCp037,
decodeCp037ToAscii,
} = require("@shreenu21/cp037-converter");
const encoded = encodeAsciiToCp037("HELLO");
const decoded = decodeCp037ToAscii(encoded);
console.log(decoded); // "HELLO"