Comparing version 6.2.4 to 6.2.5
{ | ||
"name": "fluture", | ||
"version": "6.2.4", | ||
"version": "6.2.5", | ||
"description": "FantasyLand compliant (monadic) alternative to Promises", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -563,3 +563,3 @@ import {show, showf, noop, moop} from './internal/fn'; | ||
Sequence.prototype._fork = interpretor(Sequence); | ||
Sequence.prototype._fork = interpretor; | ||
@@ -566,0 +566,0 @@ Sequence.prototype.toString = function Sequence$toString(){ |
@@ -6,3 +6,3 @@ /*eslint no-cond-assign:0, no-constant-condition:0 */ | ||
export default Sequence => function interpretor(rej, res){ | ||
export default function interpretor(rej, res){ | ||
@@ -33,3 +33,3 @@ //This is the primary queue of actions. All actions in here will be "cold", | ||
future = m; | ||
if(future instanceof Sequence){ | ||
if(future._spawn){ | ||
for(let i = future._actions.length - 1; i >= 0; i--) cold.unshift(future._actions[i]); | ||
@@ -128,2 +128,2 @@ future = future._spawn; | ||
}; | ||
} |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
175515