1.0.0 • Published 8 years ago

max-code-point v1.0.0

Weekly downloads
193
License
Unlicense
Repository
github
Last release
8 years ago

max-code-point

NPM version Bower version Build Status devDependency Status

The maximum code point available in JavaScript

import MAX_CODE_POINT from 'max-code-point';

MAX_CODE_POINT //=> 1114111
MAX_CODE_POINT === 0x10ffff; //=> true

String.fromCodePoint(MAX_CODE_POINT); //=> throws no errors 
String.fromCodePoint(MAX_CODE_POINT + 1); //=> throws a range error

Installation

Package managers

npm

npm install max-code-point

bower

bower install max-code-point

Standalone

Download the script file directly.

License

The Unlicense