caoge c760052ff9 机车状态修改 | hai 8 meses | |
---|---|---|
.. | ||
index.js | hai 8 meses | |
license | hai 8 meses | |
package.json | hai 8 meses | |
readme.md | hai 8 meses |
Check if the character represented by a given Unicode code point is fullwidth
$ npm install --save is-fullwidth-code-point
var isFullwidthCodePoint = require('is-fullwidth-code-point');
isFullwidthCodePoint('谢'.codePointAt());
//=> true
isFullwidthCodePoint('a'.codePointAt());
//=> false
Type: number
Code point of a character.
MIT © Sindre Sorhus