lhl 6ff0e96ad3 8-4-1 | 1 year ago | |
---|---|---|
.. | ||
index.js | 1 year ago | |
license | 1 year ago | |
package.json | 1 year ago | |
readme.md | 1 year ago |
Check if a character is hexadecimal.
npm:
npm install is-hexadecimal
var hexadecimal = require('is-hexadecimal')
hexadecimal('a') // => true
hexadecimal('0') // => true
hexadecimal('G') // => false
hexadecimal('💩') // => false
hexadecimal(character|code)
Check whether the given character code (number
), or the character code at the
first position (string
), is hexadecimal.