"use strict";
|
/* eslint-disable */
|
Object.defineProperty(exports, "__esModule", { value: true });
|
exports.Any = void 0;
|
function createBaseAny() {
|
return { typeUrl: "", value: Buffer.alloc(0) };
|
}
|
exports.Any = {
|
fromJSON(object) {
|
return {
|
typeUrl: isSet(object.typeUrl) ? String(object.typeUrl) : "",
|
value: isSet(object.value) ? Buffer.from(bytesFromBase64(object.value)) : Buffer.alloc(0),
|
};
|
},
|
toJSON(message) {
|
const obj = {};
|
message.typeUrl !== undefined && (obj.typeUrl = message.typeUrl);
|
message.value !== undefined &&
|
(obj.value = base64FromBytes(message.value !== undefined ? message.value : Buffer.alloc(0)));
|
return obj;
|
},
|
};
|
var tsProtoGlobalThis = (() => {
|
if (typeof globalThis !== "undefined") {
|
return globalThis;
|
}
|
if (typeof self !== "undefined") {
|
return self;
|
}
|
if (typeof window !== "undefined") {
|
return window;
|
}
|
if (typeof global !== "undefined") {
|
return global;
|
}
|
throw "Unable to locate global object";
|
})();
|
function bytesFromBase64(b64) {
|
if (tsProtoGlobalThis.Buffer) {
|
return Uint8Array.from(tsProtoGlobalThis.Buffer.from(b64, "base64"));
|
}
|
else {
|
const bin = tsProtoGlobalThis.atob(b64);
|
const arr = new Uint8Array(bin.length);
|
for (let i = 0; i < bin.length; ++i) {
|
arr[i] = bin.charCodeAt(i);
|
}
|
return arr;
|
}
|
}
|
function base64FromBytes(arr) {
|
if (tsProtoGlobalThis.Buffer) {
|
return tsProtoGlobalThis.Buffer.from(arr).toString("base64");
|
}
|
else {
|
const bin = [];
|
arr.forEach((byte) => {
|
bin.push(String.fromCharCode(byte));
|
});
|
return tsProtoGlobalThis.btoa(bin.join(""));
|
}
|
}
|
function isSet(value) {
|
return value !== null && value !== undefined;
|
}
|