fromHex can now extract 0x format

This commit is contained in:
Andy Wang 2020-01-15 22:20:47 +00:00
parent 597fba2fd0
commit 41c8a5aff0

View File

@ -104,7 +104,7 @@ export function toHexFast(data) {
*/
export function fromHex(data, delim="Auto", byteLen=2) {
if (delim !== "None") {
const delimRegex = delim === "Auto" ? /[^a-f\d]/gi : Utils.regexRep(delim);
const delimRegex = delim === "Auto" ? /[^a-f\d]|(0x)/gi : Utils.regexRep(delim);
data = data.replace(delimRegex, "");
}