https://github.com/angular/angular
Raw File
Tip revision: 9d747e3aa37ac4e40ecc529ab4e769a7e757a9df authored by Alex Rickabaugh on 21 July 2021, 21:53:53 UTC
release: cut the v12.2.0-next.3 release (#42916)
Tip revision: 9d747e3
lang_utils.ts
/**
 * @license
 * Copyright Google LLC 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
 */

export function getTypeOf(instance: any /** TODO #9100 */) {
  return instance.constructor;
}

export function instantiateType(type: Function, params: any[] = []) {
  return new (<any>type)(...params);
}
back to top