@af-utils/virtual-core
Advanced tools
Comparing version 0.0.24 to 0.0.25
@@ -299,4 +299,4 @@ // src/constants/index.ts | ||
if (process.env.NODE_ENV !== "production") { | ||
if (index >= this.e) { | ||
throw Error("index must not be > itemCount"); | ||
if (index > this.e) { | ||
throw Error(`index must not be > itemCount. Got: ${index}`); | ||
} | ||
@@ -303,0 +303,0 @@ } |
@@ -309,4 +309,4 @@ // src/polyfill.ts | ||
if (process.env.NODE_ENV !== "production") { | ||
if (index >= this.e) { | ||
throw Error("index must not be > itemCount"); | ||
if (index > this.e) { | ||
throw Error(`index must not be > itemCount. Got: ${index}`); | ||
} | ||
@@ -313,0 +313,0 @@ } |
{ | ||
"name": "@af-utils/virtual-core", | ||
"private": false, | ||
"version": "0.0.24", | ||
"version": "0.0.25", | ||
"description": "Model for rendering large scrollable data", | ||
@@ -6,0 +6,0 @@ "repository": { |
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
53980