Your IP : 216.73.217.13


Current Path : /proc/thread-self/root/var/www/fidelitychain/www/node_modules/validator/es/lib/
Upload File :
Current File : //proc/thread-self/root/var/www/fidelitychain/www/node_modules/validator/es/lib/isHexadecimal.js

import assertString from './util/assertString';
var hexadecimal = /^(0x|0h)?[0-9A-F]+$/i;
export default function isHexadecimal(str) {
  assertString(str);
  return hexadecimal.test(str);
}