peach a19a732be8 commit message | 2 سال پیش | |
---|---|---|
.. | ||
index.d.ts | 2 سال پیش | |
index.js | 2 سال پیش | |
license | 2 سال پیش | |
package.json | 2 سال پیش | |
readme.md | 2 سال پیش |
Check if the character represented by a given Unicode code point is fullwidth
$ npm install is-fullwidth-code-point
const isFullwidthCodePoint = require('is-fullwidth-code-point');
isFullwidthCodePoint('谢'.codePointAt(0));
//=> true
isFullwidthCodePoint('a'.codePointAt(0));
//=> false
Type: number
The code point of a character.
MIT © Sindre Sorhus