Sha256: 1261259d84cad204935cf54d216e5d388cd281298173c1cbd79ae065ed4c64eb
Contents?: true
Size: 428 Bytes
Versions: 24
Compression:
Stored size: 428 Bytes
Contents
'use strict' module.exports = hexadecimal // Check if the given character code, or the character code at the first // character, is hexadecimal. function hexadecimal(character) { var code = typeof character === 'string' ? character.charCodeAt(0) : character return ( (code >= 97 /* a */ && code <= 102) /* z */ || (code >= 65 /* A */ && code <= 70) /* Z */ || (code >= 48 /* A */ && code <= 57) /* Z */ ) }
Version data entries
24 entries across 24 versions & 1 rubygems