christian 4571a14169 android fix | vor 3 Jahren | |
---|---|---|
.. | ||
index.js | vor 3 Jahren | |
license | vor 3 Jahren | |
package.json | vor 3 Jahren | |
readme.md | vor 3 Jahren |
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