Skip to content

Commit

Permalink
style: add space between if and brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
claylaut committed May 15, 2018
1 parent 297a21f commit a36f718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/operators/skipUntil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class SkipUntilSubscriber<T, R> extends OuterSubscriber<T, R> {
outerIndex: number, innerIndex: number,
innerSub: InnerSubscriber<T, R>): void {
this.hasValue = true;
if(this.innerSubscription) {
if (this.innerSubscription) {
this.innerSubscription.unsubscribe();
}
}
Expand Down

0 comments on commit a36f718

Please sign in to comment.