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