epiphany/node_modules/is-decimal
2023-12-09 22:19:03 -08:00
..
index.js install 11ty 2023-12-09 22:19:03 -08:00
license install 11ty 2023-12-09 22:19:03 -08:00
package.json install 11ty 2023-12-09 22:19:03 -08:00
readme.md install 11ty 2023-12-09 22:19:03 -08:00

is-decimal

Build Coverage Downloads Size

Check if a character is decimal.

Install

npm:

npm install is-decimal

Use

var decimal = require('is-decimal')

decimal('0') // => true
decimal('9') // => true
decimal('a') // => false
decimal('💩') // => false

API

decimal(character|code)

Check whether the given character code (number), or the character code at the first position (string), is decimal.

License

MIT © Titus Wormer