refactor(upgrade/util): remove unused `stringify()` method

This commit is contained in:
Peter Bacon Darwin 2016-11-02 14:57:55 +00:00 committed by Victor Berchet
parent 3e90605db9
commit eab7e490c9
1 changed files with 0 additions and 5 deletions

View File

@ -7,11 +7,6 @@
*/
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!