|
|
|
|
|
by gopher_protocol
3446 days ago
|
|
I've found another issue where it just removes comments entirely inside an otherwise empty block. function doSomething() : int {
return myPromise
.then(() => {
// ...do thing
/* what */
})
.catch(() => {
// ..do other thing
/* the heck */
});
}
becomes function doSomething(): int {
return myPromise
.then(() => {})
.catch(() => {});
}
Still a very nice pretty printer, though. |
|