.. | ||
---|---|---|
index.js | [add] server:lib:node_modules | 2021-03-08 23:52:07 |
license | [add] server:lib:node_modules | 2021-03-08 23:52:07 |
package.json | [add] server:lib:node_modules | 2021-03-08 23:52:07 |
readme.md | [add] server:lib:node_modules | 2021-03-08 23:52:07 |
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