1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 07:17:55 +01:00
2021-09-08 16:14:22 +02:00

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);
}