is-hex-digit
v1.0.0
Published
Check if something is a hexidecimal digit
Downloads
7
Maintainers
Readme
is-hex-digit
Check if something is a hexidecimal digit
Install
$ npm install --save is-hex-digit
Usage
var isHexDigit = require('is-hex-digit');
isHexDigit('f');
//=> true
isHexDigit('9');
//=> true
isHexDigit(9);
//=> true
License
MIT © Arthur Verschaeve