We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ethers-io
Learn more about funding links in repositories.
Report abuse
1 parent 8b5dfca commit 5463aa0Copy full SHA for 5463aa0
src.ts/utils/data.ts
@@ -31,7 +31,7 @@ function _getBytes(value: BytesLike, name?: string, copy?: boolean): Uint8Array
31
return value;
32
}
33
34
- if (typeof(value) === "string" && value.match(/^0x([0-9a-f][0-9a-f])*$/i)) {
+ if (typeof(value) === "string" && value.match(/^0x(?:[0-9a-f][0-9a-f])*$/i)) {
35
const result = new Uint8Array((value.length - 2) / 2);
36
let offset = 2;
37
for (let i = 0; i < result.length; i++) {
0 commit comments