lhl c043f32e02 user-serve | hace 10 meses | |
---|---|---|
.. | ||
index.js | hace 10 meses | |
license | hace 10 meses | |
package.json | hace 10 meses | |
readme.md | hace 10 meses |
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