summaryrefslogtreecommitdiff
path: root/node_modules/is-decimal/index.d.ts
blob: 5f162a7145fd1be1742dea36180aeee9a70818b8 (plain)
1
2
3
4
5
6
7
8
/**
 * Check if the given character code, or the character code at the first
 * character, is decimal.
 *
 * @param {string|number} character
 * @returns {boolean} Whether `character` is a decimal
 */
export function isDecimal(character: string | number): boolean