Dailin 415ba84223 | před 4 roky | ||
---|---|---|---|
.. | |||
index.js | před 4 roky | ||
license | před 4 roky | ||
package.json | před 4 roky | ||
readme.md | před 4 roky |
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