steamutils 1.4.49 → 1.4.50

Sign up to get free protection for your applications and to get access to all the features.
package/_steamproto.js CHANGED
@@ -23,7 +23,7 @@ export class SteamProto {
23
23
  }
24
24
 
25
25
  protoEncodeBase64(obj) {
26
- return this.protoEncode(obj);
26
+ return this.protoEncode(obj).toString("base64");
27
27
  }
28
28
 
29
29
  protoDecode(obj) {
@@ -23,7 +23,7 @@ export class SteamProto {
23
23
  }
24
24
 
25
25
  protoEncodeBase64(obj) {
26
- return this.protoEncode(obj);
26
+ return this.protoEncode(obj).toString("base64");
27
27
  }
28
28
 
29
29
  protoDecode(obj) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.4.49",
3
+ "version": "1.4.50",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.6",
package/steamproto.js CHANGED
@@ -23,7 +23,7 @@ export class SteamProto {
23
23
  }
24
24
 
25
25
  protoEncodeBase64(obj) {
26
- return this.protoEncode(obj);
26
+ return this.protoEncode(obj).toString("base64");
27
27
  }
28
28
 
29
29
  protoDecode(obj) {