@halospv3/hce.shared-config
Version:
Automate commit message quality, changelogs, and CI/CD releases. Its `main` entry point is a Semantic Release config. Functions and classes are exposed for customization. An ESLint config, a Commitlint config, and addl. resources for .NET projects are als
11 lines (10 loc) • 877 B
JavaScript
import { filterForGetters } from "./reflection/filterForGetters.mjs";
import { getOwnPropertyDescriptors } from "./reflection/getOwnPropertyDescriptors.mjs";
import { getPrototypeOf } from "./reflection/getPrototypeOf.mjs";
import { baseClassProto } from "./reflection/inheritance.mjs";
import { isConstructor } from "./reflection/isConstructor.mjs";
import { getPrototypesChainOf } from "./reflection/getPrototypeChainOf.mjs";
import { getOwnPropertyDescriptorsRecursively } from "./reflection/getOwnPropertyDescriptorsRecursively.mjs";
import { isGetterDescriptor } from "./reflection/isGetterDescriptor.mjs";
import { listOwnGetters } from "./reflection/listOwnGetters.mjs";
export { baseClassProto, filterForGetters, getOwnPropertyDescriptors, getOwnPropertyDescriptorsRecursively, getPrototypeOf, getPrototypesChainOf, isConstructor, isGetterDescriptor, listOwnGetters };