Socket
Socket
Sign inDemoInstall

aws4

Package Overview
Dependencies
0
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.4.0 to 1.4.1

9

lru.js

@@ -78,11 +78,10 @@ module.exports = function(size) {

DoublyLinkedList.prototype.remove = function(node) {
if (node.prev == null) {
if (node.next == null) return
if (this.firstNode == node) {
this.firstNode = node.next
} else {
} else if (node.prev != null) {
node.prev.next = node.next
}
if (node.next == null) {
if (this.lastNode == node) {
this.lastNode = node.prev
} else {
} else if (node.next != null) {
node.next.prev = node.prev

@@ -89,0 +88,0 @@ }

{
"name": "aws4",
"version": "1.4.0",
"version": "1.4.1",
"description": "Signs and prepares requests using AWS Signature Version 4",

@@ -5,0 +5,0 @@ "author": "Michael Hart <michael.hart.au@gmail.com> (http://github.com/mhart)",

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc