Skip to content

harsh-100/AsciiTranslator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.