Package Exports
- charcode
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (charcode) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Charcode 
Get the charcode of a character.
Install
npm install charcode
Usage
const charcode = require("charcode");
charcode("a");
//=> 97
charcode.from(97);
//=> "a"
API
charcode(input)
input
Type: string
The character to get the charcode of.
charcode.from(input)
input
Type: number
The charcode to get the character of.