parent
51744f842d
commit
915ad63947
|
|
@ -405,7 +405,7 @@ class proto3decoder {
|
||||||
constructor(str) {
|
constructor(str) {
|
||||||
this.buf = [];
|
this.buf = [];
|
||||||
for (let i in str) {
|
for (let i in str) {
|
||||||
this.buf = this.buf.concat(str.charCodeAt(i));
|
this.buf.push(str.charCodeAt(i));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
getVarint() {
|
getVarint() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue