2015-03-30 10:37:33 -04:00
|
|
|
export function getTypeOf(instance) {
|
|
|
|
return instance.constructor;
|
|
|
|
}
|
|
|
|
|
2015-05-20 20:19:46 -04:00
|
|
|
export function instantiateType(type: Function, params: Array<any> = []) {
|
2015-03-30 10:37:33 -04:00
|
|
|
var instance = Object.create(type.prototype);
|
|
|
|
instance.constructor.apply(instance, params);
|
|
|
|
return instance;
|
|
|
|
}
|