From a36f7188a8d90565b29da2bec86a4097320e2ae3 Mon Sep 17 00:00:00 2001 From: Clayton Lautier Date: Tue, 15 May 2018 12:43:49 +0200 Subject: [PATCH] style: add space between if and brackets --- src/internal/operators/skipUntil.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/operators/skipUntil.ts b/src/internal/operators/skipUntil.ts index 5269f8944f..383847f97b 100644 --- a/src/internal/operators/skipUntil.ts +++ b/src/internal/operators/skipUntil.ts @@ -57,7 +57,7 @@ class SkipUntilSubscriber extends OuterSubscriber { outerIndex: number, innerIndex: number, innerSub: InnerSubscriber): void { this.hasValue = true; - if(this.innerSubscription) { + if (this.innerSubscription) { this.innerSubscription.unsubscribe(); } }