webpipe-js 2.0.64 → 2.0.65
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -778,13 +778,13 @@ var Parser = class {
|
|
|
778
778
|
this.expect("then:");
|
|
779
779
|
this.skipWhitespaceOnly();
|
|
780
780
|
const thenBranch = this.parseIfPipeline("else:", "end");
|
|
781
|
-
this.
|
|
781
|
+
this.skipWhitespaceOnly();
|
|
782
782
|
const elseBranch = this.tryParse(() => {
|
|
783
783
|
this.expect("else:");
|
|
784
784
|
this.skipWhitespaceOnly();
|
|
785
785
|
return this.parseIfPipeline("end");
|
|
786
786
|
});
|
|
787
|
-
this.
|
|
787
|
+
this.skipWhitespaceOnly();
|
|
788
788
|
this.tryParse(() => {
|
|
789
789
|
this.expect("end");
|
|
790
790
|
return true;
|
package/dist/index.mjs
CHANGED
|
@@ -724,13 +724,13 @@ var Parser = class {
|
|
|
724
724
|
this.expect("then:");
|
|
725
725
|
this.skipWhitespaceOnly();
|
|
726
726
|
const thenBranch = this.parseIfPipeline("else:", "end");
|
|
727
|
-
this.
|
|
727
|
+
this.skipWhitespaceOnly();
|
|
728
728
|
const elseBranch = this.tryParse(() => {
|
|
729
729
|
this.expect("else:");
|
|
730
730
|
this.skipWhitespaceOnly();
|
|
731
731
|
return this.parseIfPipeline("end");
|
|
732
732
|
});
|
|
733
|
-
this.
|
|
733
|
+
this.skipWhitespaceOnly();
|
|
734
734
|
this.tryParse(() => {
|
|
735
735
|
this.expect("end");
|
|
736
736
|
return true;
|