react-intersection-observer
Advanced tools
Comparing version 0.2.6 to 0.2.7
@@ -57,3 +57,3 @@ 'use strict'; | ||
var itemsLeft = Array.from(INSTANCE_MAP.values()).some(function (item) { | ||
var itemsLeft = INSTANCE_MAP.values().some(function (item) { | ||
return item.threshold === instance.threshold; | ||
@@ -60,0 +60,0 @@ }); |
{ | ||
"name": "react-intersection-observer", | ||
"version": "0.2.6", | ||
"version": "0.2.7", | ||
"description": "Monitor if a component is inside the viewport, using IntersectionObserver API", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -48,3 +48,3 @@ if (global.window && !process.env.SERVER) { | ||
const itemsLeft = Array.from(INSTANCE_MAP.values()).some( | ||
const itemsLeft = INSTANCE_MAP.values().some( | ||
item => item.threshold === instance.threshold, | ||
@@ -51,0 +51,0 @@ ) |
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
23258