confidence
Advanced tools
Comparing version 0.9.1 to 0.9.2
@@ -251,3 +251,3 @@ // Load modules | ||
var lastLimit = 0; | ||
var lastLimit = undefined; | ||
for (var r = 0, rl = node.$range.length; r < rl; ++r) { | ||
@@ -267,3 +267,3 @@ var range = node.$range[r]; | ||
if (range.limit <= lastLimit) { | ||
if (lastLimit !== undefined && range.limit <= lastLimit) { | ||
return error('Range entries not sorted in ascending order - ' + range.limit + ' cannot come after ' + lastLimit); | ||
@@ -270,0 +270,0 @@ } |
{ | ||
"name": "confidence", | ||
"description": "Configuration API", | ||
"version": "0.9.1", | ||
"version": "0.9.2", | ||
"author": "Eran Hammer <eran@hueniverse.com> (http://hueniverse.com)", | ||
@@ -6,0 +6,0 @@ "repository": "git://github.com/spumko/confidence", |
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
75965