lhl 55a7808c4f create | il y a 6 mois | |
---|---|---|
.. | ||
index.js | il y a 6 mois | |
license | il y a 6 mois | |
package.json | il y a 6 mois | |
readme.md | il y a 6 mois |
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