7c0461651c4c0c2d5b4809def4b3079d2ea87fedfca75c4f9b4a6bb6a6dcc660740a14c2228a4225c974c9cdc33d5893c9ce162151c47ebfabc21b5977c1b8 549 B

1234567891011121314151617
  1. /**
  2. 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).
  3. @param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character.
  4. @example
  5. ```
  6. import isFullwidthCodePoint from 'is-fullwidth-code-point';
  7. isFullwidthCodePoint('谢'.codePointAt(0));
  8. //=> true
  9. isFullwidthCodePoint('a'.codePointAt(0));
  10. //=> false
  11. ```
  12. */
  13. export default function isFullwidthCodePoint(codePoint: number): boolean;