mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
8 lines
229 B
JavaScript
Vendored
8 lines
229 B
JavaScript
Vendored
/**
|
|
* Check if class/object A is the same as or a subclass of class B.
|
|
*/
|
|
export default function subclassOf(A: Object, B: Object) {
|
|
// noinspection JSUnresolvedVariable
|
|
return A && (A === B || A.prototype instanceof B);
|
|
}
|