Socket
Socket
Sign inDemoInstall

fluture

Package Overview
Dependencies
6
Maintainers
1
Versions
109
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.1.0 to 7.1.1

2

package.json
{
"name": "fluture",
"version": "7.1.0",
"version": "7.1.1",
"description": "FantasyLand compliant (monadic) alternative to Promises",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -569,10 +569,10 @@ import {show, showf, noop, moop} from './internal/fn';

Sequence.prototype.toString = function Sequence$toString(){
let str = this._spawn.toString(), tail = this._actions;
let str = '', tail = this._actions;
while(!tail.isEmpty){
str = `${str}.${tail.head.toString()}`;
str = `.${tail.head.toString()}${str}`;
tail = tail.tail;
}
return str;
return `${this._spawn.toString()}${str}`;
};

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc