$ cnpm install code-point
Get a UTF-16-encoded code point number of a character
'A'.charCodeAt(0); //=> 65
codePoint('A'); //=> 65
'????'.charCodeAt(0); //=> 55422
codePoint('????'); //=> 195060
npm install code-point
bower install code-point
Download the script file directly.
character: String
Return: Number
If it takes a string as an argument, it returns the same result of character.codePointAt(0).
It throws an error if the argument is not a string or the string is empty.
codePoint('\udada'); //=> 56026
codePoint('\udada\udfdf'); //=> 814047
It works correctly even in ECMAScript <= 5 environments that don't support String.prototype.codePointAt.
This module includes the code of mathiasbynens / String.prototype.codePointAt. Thanks, Mathias Bynens.
Author: Mathias Bynens
This polyfill is available under the MIT license.
Copyright (c) 2014 - 2016 Shinnosuke Watanabe
Licensed under the MIT License.
Copyright 2013 - present © cnpmjs.org | Home |