对于以下代码:
this.fooService
.bar$
.pipe(takeUntil(this.destroy$))
.subscribe(
(value: ValueType) => {
// do something
}
);
而不是像这样折叠它:
this.fooService
.bar$
.pipe(takeUntil(this.destroy$))
.subscribe(
(value: ValueType) => {...}
);
我希望 WebStorm 这样折叠它:
this.fooService ...
ABOUTYOU
相关分类