UNPKG

@visulima/string

Version:

Functions for manipulating strings.

8 lines (7 loc) 281 B
/** * Check if the given code point is a fullwidth character. * @param codePoint The code point to check. * @returns Whether the code point is a fullwidth character. */ declare const isFullwidthCodePoint: (codePoint: number) => boolean; export { isFullwidthCodePoint as default };