ordr

0.0.3 • Public • Published

ordr

NPM

Given a string representing one Unicode character, return an integer representing the Unicode code point of that character.
ES6 implementation of Python built-in ord() function

This is the inverse of char.

Install

$ npm install --save ordr

Usage

const ord = require('ordr')
 
console.log(ord('A'))
// => 65
 
console.log(ord('a'))
// => 97
 
console.log(ord(''))
// => 8364
 
console.log(ord('@'))
// => 64

License

MIT © Nicolás Quiroz

Package Sidebar

Install

npm i ordr

Weekly Downloads

0

Version

0.0.3

License

MIT

Last publish

Collaborators

  • nhsz