whatwg-fetch
Advanced tools
Comparing version 3.6.4 to 3.6.5
@@ -338,3 +338,3 @@ (function (global, factory) { | ||
// HTTP methods whose capitalization should be normalized | ||
var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT']; | ||
var methods = ['CONNECT', 'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PATCH', 'POST', 'PUT', 'TRACE']; | ||
@@ -341,0 +341,0 @@ function normalizeMethod(method) { |
@@ -332,3 +332,3 @@ var global = | ||
// HTTP methods whose capitalization should be normalized | ||
var methods = ['DELETE', 'GET', 'HEAD', 'OPTIONS', 'POST', 'PUT'] | ||
var methods = ['CONNECT', 'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PATCH', 'POST', 'PUT', 'TRACE'] | ||
@@ -335,0 +335,0 @@ function normalizeMethod(method) { |
{ | ||
"name": "whatwg-fetch", | ||
"description": "A window.fetch polyfill.", | ||
"version": "3.6.4", | ||
"version": "3.6.5", | ||
"main": "./dist/fetch.umd.js", | ||
@@ -6,0 +6,0 @@ "module": "./fetch.js", |
@@ -67,3 +67,3 @@ # window.fetch polyfill | ||
You will also need a Promise polyfill for [older browsers](http://caniuse.com/#feat=promises). | ||
You will also need a Promise polyfill for [older browsers](https://caniuse.com/promises). | ||
We recommend [taylorhakes/promise-polyfill](https://github.com/taylorhakes/promise-polyfill) | ||
@@ -70,0 +70,0 @@ for its small size and Promises/A+ compatibility. |
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
55153