ag-swipe-core
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "ag-swipe-core", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A lightweight library to detect swipes on touchscreen devices.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -14,3 +14,3 @@ ## Installation | ||
createSwipeSubscription({ | ||
const swipeSubscription = createSwipeSubscription({ | ||
domElement, | ||
@@ -27,5 +27,5 @@ onSwipeEnd: (event: SwipeEvent) => { | ||
```typescript | ||
if (typeof swipeSubscription?.unsubscribe === 'function') { | ||
if (swipeSubscription) { | ||
swipeSubscription.unsubscribe(); | ||
} | ||
``` |
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
3545