Skip to content

Commit

Permalink
refactor: update jstring class
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraviolet-jordan committed Jan 7, 2024
1 parent 24322a2 commit 82f01c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/jagex2/datastruct/JString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class JString {
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9'
];

toBase37 = (string: string): bigint => {
static toBase37 = (string: string): bigint => {
string = string.trim();
let l: bigint = 0n;

Expand Down

0 comments on commit 82f01c4

Please sign in to comment.