Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

circular-buffer

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

circular-buffer - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

9

index.js

@@ -14,8 +14,7 @@ function CircularBuffer(capacity){

throw new TypeError("Invalid capacity");
this._buffer=new Array(capacity);
this._capacity=capacity;
this._first=0;
this._size=0;
}
this._buffer=new Array(capacity);
this._capacity=capacity;
this._first=0;
this._size=0;
}

@@ -22,0 +21,0 @@

{
"name": "circular-buffer",
"version": "0.0.5",
"version": "0.0.6",
"description": "A NodeJS simple circular buffer implementation supporting indexing ",

@@ -5,0 +5,0 @@ "main": "index.js",

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