Socket
Socket
Sign inDemoInstall

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 10.1.0 to 10.1.1

8

index.js

@@ -212,2 +212,6 @@ (function (global, factory) {

function isNil(list){
return list.tail === list;
}
function cons(head, tail){

@@ -414,3 +418,3 @@ return {head: head, tail: tail};

var tail = future._actions;
while(tail !== nil){
while(!isNil(tail)){
queue.unshift(tail.head);

@@ -515,3 +519,3 @@ tail = tail.tail;

while(tail !== nil){
while(!isNil(tail)){
str = '.' + tail.head.toString() + str;

@@ -518,0 +522,0 @@ tail = tail.tail;

{
"name": "fluture",
"version": "10.1.0",
"version": "10.1.1",
"description": "FantasyLand compliant (monadic) alternative to Promises",

@@ -67,3 +67,3 @@ "main": "index",

"codecov": "^3.0.0",
"es-check": "^2.1.0",
"es-check": "^4.0.0",
"eslint": "^5.5.0",

@@ -83,3 +83,3 @@ "eslint-config-warp": "^3.0.0",

"rimraf": "^2.6.2",
"rollup": "^0.65.0",
"rollup": "^0.66.0",
"rollup-plugin-commonjs": "^9.1.6",

@@ -86,0 +86,0 @@ "rollup-plugin-node-resolve": "^3.0.0",

@@ -316,3 +316,3 @@ # [![Fluture](logo.png)](#butterfly)

With the [`Future` constructor](#future), we can provide a the cancellation
With the [`Future` constructor](#future), we can provide a custom cancellation
handler by returning it from the computation. Let's see what this looks like:

@@ -1219,3 +1219,3 @@

An advanced version of [fork](#fork) that allows us to recover in the event
that an error was `throw`n during the executation of the computation.
that an error was `throw`n during the execution of the computation.

@@ -1222,0 +1222,0 @@ The recovery function will always be called with an instance of Error,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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