fix: converter returning sharkeyid wrong
This commit is contained in:
parent
ceffd53d47
commit
9dfc4dbf02
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ export function convertId(in_id: string, id_convert_type: IdConvertType): string
|
|||
outStr = charFromNum(remainder) + outStr;
|
||||
input /= BigInt(36);
|
||||
}
|
||||
return outStr;
|
||||
let ReversedoutStr = outStr.split("").reduce((acc, char) => char + acc, "");
|
||||
return ReversedoutStr;
|
||||
|
||||
default:
|
||||
throw new Error('Invalid ID conversion type');
|
||||
|
|
Loading…
Reference in a new issue