JSPM

charcode

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 26
  • Score
    100M100P100Q69438F
  • License MIT

Get the charcode of a character.

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 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.