node-superfetch
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "node-superfetch", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A wrapper for node-fetch that makes it appear like superagent.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -14,2 +14,3 @@ import { Agent } from 'http'; | ||
agent?: Agent; | ||
noResultData?: Boolean | ||
} | ||
@@ -24,5 +25,5 @@ | ||
ok: boolean; | ||
raw: Buffer; | ||
text: string; | ||
body: ResponseBody; | ||
raw: Buffer | null; | ||
text: string | null; | ||
body: ResponseBody | null; | ||
} | ||
@@ -29,0 +30,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10288
205