Daniel Hübleitner 615619e6e7 start werk | il y a 5 ans | |
---|---|---|
.. | ||
index.js | il y a 5 ans | |
license | il y a 5 ans | |
package.json | il y a 5 ans | |
readme.md | il y a 5 ans |
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