could-be-class
Advanced tools
Comparing version 0.2.0 to 0.2.1
/** | ||
* Checks if an object could be an instantiable class. | ||
*/ | ||
export function isClass(obj: any): obj is new (...args: any[]) => any; | ||
export default isClass; | ||
export function couldBeClass(obj: any): obj is new (...args: any[]) => any; | ||
export default couldBeClass; |
{ | ||
"name": "could-be-class", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "Checks if an object could be an instantiable class.", | ||
@@ -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
8450
137