mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
7 lines
167 B
JavaScript
7 lines
167 B
JavaScript
|
/**
|
||
|
* Check if class A is the same as or a subclass of class B.
|
||
|
*/
|
||
|
export default function subclassOf(A, B) {
|
||
|
return A && (A === B || A.prototype instanceof B);
|
||
|
}
|