AsciiTranslator
AsciiTranslator is an npm package that allows you to generate ASCII values for each character in a given string.

Installation
You can install AsciiTranslator via npm using the following command:
npm install asciitranslator
Usage javascript
const getAsciiValue = require("asciitranslator");
const result = getAsciiValue("Hello");
console.log(result);
[{ H: 72 }, { e: 101 }, { l: 108 }, { l: 108 }, { o: 111 }];
Contributing
If you'd like to contribute to this project, feel free to open an issue or submit a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.