devsite/node_modules/is-decimal
2024-07-07 18:49:38 -07:00
..
index.js more 2024-07-07 18:49:38 -07:00
license more 2024-07-07 18:49:38 -07:00
package.json more 2024-07-07 18:49:38 -07:00
readme.md more 2024-07-07 18:49:38 -07: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