Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vi-fetch

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vi-fetch - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

8

dist/utils.js

@@ -13,3 +13,9 @@ import "./chunk-JUWXSDKJ.js";

return "application/json";
if (body instanceof Blob) {
if (typeof FormData !== "undefined" && body instanceof FormData) {
return "multipart/form-data";
}
if (typeof ArrayBuffer !== "undefined" && body instanceof ArrayBuffer) {
return "application/octet-stream";
}
if (typeof Blob !== "undefined" && body instanceof Blob) {
return body.type;

@@ -16,0 +22,0 @@ }

2

package.json
{
"name": "vi-fetch",
"version": "0.3.1",
"version": "0.3.2",
"description": "Easiest way to mock fetch",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc