25 lines
568 B
TypeScript
25 lines
568 B
TypeScript
/**
|
|
* @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
|
|
*/
|
|
|
|
|
|
export function stringify(obj: any): string {
|
|
if (typeof obj == 'function') return obj.name || obj.toString();
|
|
return '' + obj;
|
|
}
|
|
|
|
|
|
export function onError(e: any) {
|
|
// TODO: (misko): We seem to not have a stack trace here!
|
|
console.log(e, e.stack);
|
|
throw e;
|
|
}
|
|
|
|
export function controllerKey(name: string): string {
|
|
return '$' + name + 'Controller';
|
|
}
|