circular-buffer
Advanced tools
Comparing version 0.0.5 to 0.0.6
@@ -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", |
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
8234