1.0.2 • Published 9 years ago
char v1.0.2
char
Return the string representing a character whose Unicode code point is the integer
code.
ES6 implementation ofPython built-in chr()function
This is the inverse of ordr.
The valid range for the argument is from 0 through 1114111 (0x10FFFF in base 16). RangeError will be raised if code is outside that range.
Install
$ npm install charUsage
const chr = require('char')
console.log(chr(65))
// => 'A'
console.log(chr(97))
// => 'a'
console.log(chr(8364))
// => '€'
console.log(chr(64))
// => '@'
console.log(chr(-1))
// => RangeError: Invalid code point -1License
MIT © Nicolás Quiroz
