alpha
Login
or
Join now
mary.my.id
/
pkg-tar
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
read and write tar archives
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: incorrect json return type
author
Mary
date
2 years ago
(Mar 19, 2024, 12:50 PM +0700)
commit
a64262c6
a64262c67bc9fa81714afa2aafffd5928c027b66
parent
38bd5807
38bd5807e3bcde477927902286e5802bf74b3b57
+2
-1
1 changed file
Expand all
Collapse all
Unified
Split
lib
untar.ts
+2
-1
lib/untar.ts
View file
Reviewed
···
290
290
}
291
291
292
292
/** Read the file contents as a JSON */
293
293
-
async json(): Promise<string> {
293
293
+
// deno-lint-ignore no-explicit-any
294
294
+
async json(): Promise<any> {
294
295
const text = await this.text();
295
296
return JSON.parse(text);
296
297
}