1.0.2 • Published 7 years ago

char v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

char

Return the string representing a character whose Unicode code point is the integer code.
ES6 implementation of Python built-in chr() function

Build Status Coverage Status codebeat badge Codacy Badge Code Climate

NPM

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 char

Usage

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

License

MIT © Nicolás Quiroz

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago

0.0.0-reserved

8 years ago

0.0.0

10 years ago