index.d.ts 278 B

12345678
  1. /**
  2. * Check if the given character code, or the character code at the first
  3. * character, is alphabetical.
  4. *
  5. * @param {string|number} character
  6. * @returns {boolean} Whether `character` is alphabetical.
  7. */
  8. export function isAlphabetical(character: string | number): boolean