chuwanghui 6d115466a5 electron库 | hace 6 años | |
---|---|---|
.. | ||
index.js | hace 6 años | |
license | hace 6 años | |
package.json | hace 6 años | |
readme.md | hace 6 años |
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