Socket
Socket
Sign inDemoInstall

fifo

Package Overview
Dependencies
0
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.2 to 0.1.3

9

index.js

@@ -18,2 +18,11 @@ var Node = function(val) {

FIFO.prototype.set = function(node, value) {
node.value = value;
return node;
};
FIFO.prototype.get = function(node) {
return node.value;
};
FIFO.prototype.remove = function(node) {

@@ -20,0 +29,0 @@ if (!node) return;

2

package.json
{
"name": "fifo",
"version": "0.1.2",
"version": "0.1.3",
"repository": "git://github.com/mafintosh/fifo",

@@ -5,0 +5,0 @@ "license": "MIT",

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