rename asJSON to toJSON

This commit is contained in:
Bruno Windels 2022-05-06 17:23:07 +02:00
parent d69b1dc3e2
commit 814cee214c

View file

@ -237,13 +237,13 @@ export class IDBLogExport {
} }
asBlob(): BlobHandle { asBlob(): BlobHandle {
const json = this.asJSON(); const json = this.toJSON();
const buffer: Uint8Array = this._platform.encoding.utf8.encode(json); const buffer: Uint8Array = this._platform.encoding.utf8.encode(json);
const blob: BlobHandle = this._platform.createBlob(buffer, "application/json"); const blob: BlobHandle = this._platform.createBlob(buffer, "application/json");
return blob; return blob;
} }
asJSON(): string { toJSON(): string {
const log = { const log = {
formatVersion: 1, formatVersion: 1,
appVersion: this._platform.updateService?.version, appVersion: this._platform.updateService?.version,