thinking about base58, fix some comments

This commit is contained in:
2022-10-21 03:14:34 -06:00
parent c72088075d
commit 0e600f0f05
6 changed files with 710 additions and 2 deletions
+2 -2
View File
@@ -249,9 +249,9 @@ decode(base64_str : string): Uint8Array {
// Originally, I used + like some sort of moron who codes in a sane
// language
//
// seriously what the fuck is this language
// seriously what is this language
//
// this is some clown shit
// this is some clown behavior
let total_arr : Array<number> = head_arr.concat(tail_arr);
return new Uint8Array(total_arr);
}