kiruthiga 55473b7e7c initial push il y a 6 jours
..
index.js 55473b7e7c initial push il y a 6 jours
license 55473b7e7c initial push il y a 6 jours
package.json 55473b7e7c initial push il y a 6 jours
readme.md 55473b7e7c initial push il y a 6 jours

readme.md

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.

Related

License

MIT © Titus Wormer