{"version":3,"sources":["webpack:///../node_modules/is-hexadecimal/index.js"],"names":[],"mappings":";;;;;;;;;;;;AAAY;;AAEZ;;AAEA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA","file":"vendor.is-hexadecimal.afe8001bf992ec61281d.js","sourcesContent":["'use strict'\n\nmodule.exports = hexadecimal\n\n// Check if the given character code, or the character code at the first\n// character, is hexadecimal.\nfunction hexadecimal(character) {\n var code = typeof character === 'string' ? character.charCodeAt(0) : character\n\n return (\n (code >= 97 /* a */ && code <= 102) /* z */ ||\n (code >= 65 /* A */ && code <= 70) /* Z */ ||\n (code >= 48 /* A */ && code <= 57) /* Z */\n )\n}\n"],"sourceRoot":""}