robert2206 8ad867f7a5 commit inicial | 8 anni fa | |
---|---|---|
.. | ||
index.js | 8 anni fa | |
license | 8 anni fa | |
package.json | 8 anni fa | |
readme.md | 8 anni fa |
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