Package Exports
- is-hex-digit
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-hex-digit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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