lhl 8884f64fe1 10-8 | há 3 anos atrás | |
---|---|---|
.. | ||
index.js | há 3 anos atrás | |
license | há 3 anos atrás | |
package.json | há 3 anos atrás | |
readme.md | há 3 anos atrás |
Check if the character represented by a given Unicode code point is fullwidth
$ npm install --save is-fullwidth-code-point
const isFullwidthCodePoint = require('is-fullwidth-code-point');
isFullwidthCodePoint('谢'.codePointAt());
//=> true
isFullwidthCodePoint('a'.codePointAt());
//=> false
Type: number
Code point of a character.
MIT © Sindre Sorhus