mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
Current file header is : /*! showdown v 2.0.0-alpha1 - 25-09-2018 */ Official 2.0.0-alpha doesn't match neither on content nor date :( Considering date we would be at 1.8.7, but it is also quite different (and has vulnerabilities) In consequence switching to 2.0.0.
is-fullwidth-code-point 
Check if the character represented by a given Unicode code point is fullwidth
Install
$ npm install is-fullwidth-code-point
Usage
const isFullwidthCodePoint = require('is-fullwidth-code-point');
isFullwidthCodePoint('谢'.codePointAt(0));
//=> true
isFullwidthCodePoint('a'.codePointAt(0));
//=> false
API
isFullwidthCodePoint(codePoint)
codePoint
Type: number
The code point of a character.
License
MIT © Sindre Sorhus