lhl 55a7808c4f create | 6 tháng trước cách đây | |
---|---|---|
.. | ||
index.js | 6 tháng trước cách đây | |
license | 6 tháng trước cách đây | |
package.json | 6 tháng trước cách đây | |
readme.md | 6 tháng trước cách đây |
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