Comparing version 1.0.4 to 1.0.5
@@ -261,2 +261,7 @@ /** | ||
this.isFulfilled = true; | ||
if (this.parent === null) { | ||
return; | ||
} | ||
this.parent.dispatch(this.name); | ||
@@ -272,2 +277,7 @@ }, | ||
this.isRejected = true; | ||
if (this.parent === null) { | ||
return; | ||
} | ||
this.parent.dispatch(this.name); | ||
@@ -274,0 +284,0 @@ this.parent.dispatch('reject', { |
@@ -5,3 +5,3 @@ { | ||
"description": "Fluorine node Package to run js flows better than promises", | ||
"version": "1.0.4", | ||
"version": "1.0.5", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type" : "git", |
17601
289