summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/is-decimal/index.js
blob: e0940c040da7ccb6dfb4e5d7077bb4da317874aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

module.exports = decimal;

/* Check if the given character code, or the character
 * code at the first character, is decimal. */
function decimal(character) {
  var code = typeof character === 'string' ?
    character.charCodeAt(0) : character;

  return code >= 48 && code <= 57; /* 0-9 */
}