index.d.ts 264 B

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