Convert character(s) to their respective ASCII codes.
$ npm install --save char-to-ascii
const charToAscii = require('char-to-ascii');
charToAscii('unicorns');
//=> [117, 110, 105, 99, 111, 114, 110, 115]
Type: string
The set of characters you want to convert into ASCII.
MIT © jxom