Инструменты разработки Google — Красивее

#javascript

Вопрос:

Можно ли сделать более красивый инструмент в инструментах разработчика Google похожим на исходный код, из которого он сгенерирован?

В инструментах разработчика я нажимаю {}, и это делает его красивее. Код выглядит так…..

 getdataJS() {
                    j.default({
                        recordId: this.appId
                    }).then(e=>{
                        this.appId = e,
                        this.getAddress(),
                        this.doButtonChanges(!0)
                    }
                    ).catch(e=>{}
                    ),
                    j.default({
                        recordId: this.recId
                    }).then(e=>{
                        this.recId = e
                    }
                    ).catch(e=>{}
                    )
                } 

Фактический исходный код выглядит следующим образом………….

 getdataJS() {
        getData({ recordId: this.appId })
            .then((result) => {
                this.appId = resu<
                this.getAddress();
                this.doButtonChanges(true);
            })
            .catch((error) => {});
        getData({ recordId: this.recId })
            .then((result) => {
                this.recId = resu<
            })
            .catch((error) => {});
    } 

Есть ли инструмент, который сделает их одинаковыми?