node-ejs-renderer/node_modules/validator/es/lib/isHexadecimal.js

6 lines
189 B
JavaScript
Raw Permalink Normal View History

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