UNPKG

212 BJavaScriptView Raw
1import {eastAsianWidth} from 'get-east-asian-width';
2
3export default function isFullwidthCodePoint(codePoint) {
4 if (!Number.isInteger(codePoint)) {
5 return false;
6 }
7
8 return eastAsianWidth(codePoint) === 2;
9}