Comparing version 0.3.0 to 0.3.1
@@ -119,5 +119,5 @@ /** | ||
var a = this._array; | ||
var v = this._array[i]; | ||
this._array[i] = this._array[j]; | ||
this._array[j] = v; | ||
var v = a[i]; | ||
a[i] = a[j]; | ||
a[j] = v; | ||
}; | ||
@@ -124,0 +124,0 @@ |
{ | ||
"name": "js-heap", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "A javascript heap implementation", | ||
@@ -5,0 +5,0 @@ "main": "heap.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
8312