UNPKG

@wayz/react-gl

Version:

React Component for DeckGL, Base on AMap, Mapbox GL

11 lines (10 loc) 263 B
// Check if one JavaScript class inherits from another export function inheritsFrom(Type, ParentType) { while (Type) { if (Type === ParentType) { return true; } Type = Object.getPrototypeOf(Type); } return false; }