Socket
Socket
Sign inDemoInstall

@aws-sdk/protocol-http

Package Overview
Dependencies
Maintainers
5
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/protocol-http - npm Package Compare versions

Comparing version 3.272.0 to 3.282.0

6

dist-cjs/Fields.js

@@ -11,9 +11,9 @@ "use strict";

setField(field) {
this.entries[field.name] = field;
this.entries[field.name.toLowerCase()] = field;
}
getField(name) {
return this.entries[name];
return this.entries[name.toLowerCase()];
}
removeField(name) {
delete this.entries[name];
delete this.entries[name.toLowerCase()];
}

@@ -20,0 +20,0 @@ getByType(kind) {

@@ -8,9 +8,9 @@ export class Fields {

setField(field) {
this.entries[field.name] = field;
this.entries[field.name.toLowerCase()] = field;
}
getField(name) {
return this.entries[name];
return this.entries[name.toLowerCase()];
}
removeField(name) {
delete this.entries[name];
delete this.entries[name.toLowerCase()];
}

@@ -17,0 +17,0 @@ getByType(kind) {

{
"name": "@aws-sdk/protocol-http",
"version": "3.272.0",
"version": "3.282.0",
"scripts": {

@@ -5,0 +5,0 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc