Compare commits

...

1 Commits

Author SHA1 Message Date
26c6084052 Messing around with http decoding
All checks were successful
Build / Build NPM Project (push) Successful in 24s
Build / Tag Version (push) Successful in 7s
2024-08-13 15:21:56 -04:00
2 changed files with 1 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ztimson/utils",
"version": "0.14.8",
"version": "0.14.9",
"description": "Utility library",
"author": "Zak Timson",
"license": "MIT",

View File

@ -105,7 +105,6 @@ export class Http {
});
const data = new Response(stream);
resp.body = data.body;
resp.blob = data.blob;
resp.formData = data.formData;
resp.json = data.json;