UNPKG

@skele/classic

Version:

Skele is an architectural framework that assists with building data-driven apps with React or React Native.

7 lines (5 loc) 161 B
/* @flow */ 'use strict' export function isSubclassOf(SubClass, ParentClass) { return SubClass.prototype instanceof ParentClass || SubClass === ParentClass }