Socket
Socket
Sign inDemoInstall

whatwg-fetch

Package Overview
Dependencies
Maintainers
2
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

whatwg-fetch - npm Package Compare versions

Comparing version 0.10.0 to 0.10.1

6

fetch.js

@@ -119,3 +119,4 @@ (function() {

})(),
formData: 'FormData' in self
formData: 'FormData' in self,
arrayBuffer: 'ArrayBuffer' in self
}

@@ -137,2 +138,5 @@

this._bodyText = ''
} else if (support.arrayBuffer && ArrayBuffer.prototype.isPrototypeOf(body)) {
// Only support ArrayBuffers for POST method.
// Receiving ArrayBuffers happens via Blobs, instead.
} else {

@@ -139,0 +143,0 @@ throw new Error('unsupported BodyInit type')

2

package.json
{
"name": "whatwg-fetch",
"version": "0.10.0",
"version": "0.10.1",
"main": "fetch.js",

@@ -5,0 +5,0 @@ "repository": "github/fetch",

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