Eric Foster 35b96bc934 initial commit | пре 6 година | |
---|---|---|
.. | ||
index.js | пре 6 година | |
license | пре 6 година | |
package.json | пре 6 година | |
readme.md | пре 6 година |
Check if the character represented by a given Unicode code point is fullwidth
$ npm install --save is-fullwidth-code-point
var isFullwidthCodePoint = require('is-fullwidth-code-point');
isFullwidthCodePoint('谢'.codePointAt());
//=> true
isFullwidthCodePoint('a'.codePointAt());
//=> false
Type: number
Code point of a character.
MIT © Sindre Sorhus