mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-07-12 03:06:05 +09:00
2537c2e6e2
This reverts commit 2fb5731f23.
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