main
Last change
on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
297 bytes
|
Line | |
---|
1 | 'use strict'
|
---|
2 |
|
---|
3 | module.exports = decimal
|
---|
4 |
|
---|
5 | // Check if the given character code, or the character code at the first
|
---|
6 | // character, is decimal.
|
---|
7 | function decimal(character) {
|
---|
8 | var code = typeof character === 'string' ? character.charCodeAt(0) : character
|
---|
9 |
|
---|
10 | return code >= 48 && code <= 57 /* 0-9 */
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.