rename asJSON to toJSON

This commit is contained in:
Bruno Windels 2022-05-06 17:23:07 +02:00
parent d69b1dc3e2
commit 814cee214c
1 changed files with 2 additions and 2 deletions

View File

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