charcode

Get the charcode of a character.


Keywords
charcode, char, code, string, get, keyboard, type, typing, user, convert, keycode, key
License
MIT
Install
npm install charcode@1.0.0

Documentation

Charcode Travis CI Build Status

Get the charcode of a character.

NPM Badge

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.