getNameOrDesc
Available since v0.9
Returns target class' constructor name, or description tag if name is not available.
import { getNameOrDesc } from '@aedart/support/reflections';
class ApiService {}
getNameOrDesc(ApiService); // ApiService
getNameOrDesc(class {}); // [object Function]