redux-duplicate-actions
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "redux-duplicate-actions", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "This is a redux middleware that detects duplicate actions & shows this in the console. You can choose to make them fatal errors or friendly warnings! Development use only!", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -13,7 +13,3 @@ 'use strict'; | ||
const checkHash = function(action = '') { | ||
if (getHash(action) === lastActionHash) { | ||
return false; | ||
} else { | ||
return true; | ||
} | ||
return !(getHash(action) === lastActionHash); | ||
}; | ||
@@ -20,0 +16,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
15183
270