1.0.2 • Published 7 months ago

asciitranslator v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

AsciiTranslator

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

ascii-value

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);
//The above code will output:
[{ 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.

1.0.2

7 months ago

1.0.1

7 months ago

1.0.0

7 months ago