getConstructorNameOn this pagegetConstructorNameGet constructor name of an instance.APIfunction getConstructorName(instance: any): string;Exampleimport { EventEmitter, getConstructorName } from "@lilib/utils";const emitter = new EventEmitter();console.log(getConstructorName(emitter));// => "EventEmitter"