@corefunc/corefunc
Advanced tools
Comparing version 0.0.25 to 0.0.26
@@ -1,4 +0,1 @@ | ||
import fnIsSetType from "./isSetType"; | ||
import fnIsMapType from "./isMapType"; | ||
/** | ||
@@ -8,6 +5,4 @@ * @param {*} value | ||
*/ | ||
function isKeyed(value) { | ||
return fnIsSetType(value) || fnIsMapType(value); | ||
export default function checkIsKeyed(value) { | ||
return value instanceof Set || value instanceof Map; | ||
} | ||
export default isKeyed; |
@@ -61,3 +61,3 @@ { | ||
}, | ||
"version": "0.0.25" | ||
"version": "0.0.26" | ||
} |
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
126269
315
4224