signal-chain
Advanced tools
Comparing version 0.11.2 to 0.11.3
@@ -11,3 +11,3 @@ import { chain } from "./chain"; | ||
execute(context.cleanup); | ||
next(parameter); | ||
context.cleanup = next(parameter); | ||
} | ||
@@ -17,3 +17,3 @@ status.is = 'incomplete'; | ||
if (final) { | ||
execute(context.cleanup); | ||
execute(context.cleanup, true); | ||
} | ||
@@ -29,3 +29,3 @@ }; | ||
execute(context.cleanup); | ||
next(mappedValue); | ||
context.cleanup = next(mappedValue); | ||
} | ||
@@ -35,3 +35,3 @@ status.is = 'incomplete'; | ||
if (final) { | ||
execute(context.cleanup); | ||
execute(context.cleanup, true); | ||
} | ||
@@ -55,3 +55,3 @@ }; | ||
if (final) { | ||
execute(cleanup); | ||
execute(cleanup, true); | ||
} | ||
@@ -58,0 +58,0 @@ }; |
{ | ||
"name": "signal-chain", | ||
"version": "0.11.2", | ||
"version": "0.11.3", | ||
"author": "Christoph Franke", | ||
@@ -5,0 +5,0 @@ "description": "Declarative Reactive Programming Library", |
303437