memoize-weak
Advanced tools
Comparing version 1.0.1 to 1.0.2
function isPrimitive(value) { | ||
return (typeof value !== 'object') || (value === null); | ||
return ((typeof value !== 'object') && (typeof value !== 'function')) || (value === null); | ||
} | ||
@@ -4,0 +4,0 @@ |
{ | ||
"name": "memoize-weak", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Garbage-collected memoizer for variadic functions", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
6044