How to use the @abraham/reflection.Reflection.getMetadata function in @abraham/reflection

To help you get started, we’ve selected a few @abraham/reflection examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github KiranMantha / plumejs / src / lib / decorators.ts View on Github external
const getDeps = (target: Function): Array => {
	let types:Array = Reflect.getMetadata("design:paramtypes", target) || [];
	let deps = types.map((a: Function) => {
		if (a) {
			if (a.name !== "Object") {
				return a.name;
			} else {
				return "props";
			}
		} else {
			return "";
		}
	});
	return deps;
};

@abraham/reflection

Lightweight ES Module implementation of reflect-metadata

MIT
Latest version published 1 year ago

Package Health Score

64 / 100
Full package analysis