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 111523677c
commit 998ce9ad7e

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!