Skip to content

Commit

Permalink
release: latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
avimak committed Oct 22, 2023
1 parent 1535057 commit 2fa6f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const isHex = (hex: string) => /^0x[0-9a-f]*$/i.test(hex);

export const removeHexPrefix = (hex: string) => hex.replace(/^0x/i, "");

export const isDecimalString = (decim: string) => /^[0-9]*$/i.test(decim);
export const isDecimalString = (decimal: string) => /^[0-9]*$/i.test(decimal);

export const decodeShortString = (str: string): string => {
if (!isASCII(str)) {
Expand Down

0 comments on commit 2fa6f69

Please sign in to comment.