Skip to content

Commit

Permalink
fix: toReversed() changed back to older reverse()
Browse files Browse the repository at this point in the history
  • Loading branch information
ohager committed Aug 25, 2024
1 parent 7bd689b commit 82c5a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/crypto/src/sign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function hexToDec(s: string): string {
carry = carry / 10 | 0;
}
}
return digits.toReversed().join('');
return digits.reverse().join('');
}

function toBytes(hex: string): Uint8Array {
Expand Down

0 comments on commit 82c5a8d

Please sign in to comment.