MES手机端
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
liup a01a5aa773 提交修改 pirms 3 nedēļām
..
index.js 提交修改 pirms 3 nedēļām
license 提交修改 pirms 3 nedēļām
package.json 提交修改 pirms 3 nedēļām
readme.md 提交修改 pirms 3 nedēļām

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.

License

MIT © Titus Wormer