2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-08 15:45:15 -07:00
|
|
|
export function getTypeOf(instance: any /** TODO #9100 */) {
|
2015-03-30 16:37:33 +02:00
|
|
|
return instance.constructor;
|
|
|
|
}
|
|
|
|
|
2015-08-28 11:29:19 -07:00
|
|
|
export function instantiateType(type: Function, params: any[] = []) {
|
2016-09-12 20:30:42 -07:00
|
|
|
return new (<any>type)(...params);
|
2015-03-30 16:37:33 +02:00
|
|
|
}
|