read and write tar archives
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: incorrect json return type

+2 -1
+2 -1
lib/untar.ts
··· 290 290 } 291 291 292 292 /** Read the file contents as a JSON */ 293 - async json(): Promise<string> { 293 + // deno-lint-ignore no-explicit-any 294 + async json(): Promise<any> { 294 295 const text = await this.text(); 295 296 return JSON.parse(text); 296 297 }