Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

fluture

Package Overview
Dependencies
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluture - npm Package Compare versions

Comparing version 6.2.4 to 6.2.5

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc