10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
export function getTypeOf(instance) {
|
|
return instance.constructor;
|
|
}
|
|
|
|
export function instantiateType(type: Function, params: any[] = []) {
|
|
var instance = Object.create(type.prototype);
|
|
instance.constructor.apply(instance, params);
|
|
return instance;
|
|
}
|