Sha256: 9a3e6bdffd8335b7d29c1d578ef7411703c57d07aff959bda92b27110f868532
Contents?: true
Size: 549 Bytes
Versions: 112
Compression:
Stored size: 549 Bytes
Contents
/** Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms). @param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character. @example ``` import isFullwidthCodePoint from 'is-fullwidth-code-point'; isFullwidthCodePoint('谢'.codePointAt(0)); //=> true isFullwidthCodePoint('a'.codePointAt(0)); //=> false ``` */ export default function isFullwidthCodePoint(codePoint: number): boolean;
Version data entries
112 entries across 110 versions & 7 rubygems