sensordb2 e64a8defe5 3.17 | před 1 rokem | |
---|---|---|
.. | ||
index.js | před 1 rokem | |
license | před 1 rokem | |
package.json | před 1 rokem | |
readme.md | před 1 rokem |
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