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 8.0.0 to 8.0.1

15

index.js

@@ -13,8 +13,15 @@ (function (global, factory) {

function setImmediate$1(f, x){ return setTimeout(f, 0, x) }
/* istanbul ignore file: environment-specific */
var setImmediate = typeof global.setImmediate === 'function'
? global.setImmediate
: /* istanbul ignore next: environment-specific */ setImmediate$1;
/* eslint-disable no-undef */
const scope = typeof self === 'object' ? self :
typeof global === 'object' ? global :
typeof window === 'object' ? window :
{};
/* eslint-enable no-undef */
const setImmediate = typeof scope.setImmediate === 'function' ?
scope.setImmediate :
function setImmediate(f, x){ return setTimeout(f, 0, x) };
function noop(){}

@@ -21,0 +28,0 @@ function moop(){ return this }

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

@@ -61,7 +61,7 @@ "main": "index.js",

"inspect-f": "^1.2.0",
"sanctuary-type-classes": "^7.1.1",
"sanctuary-type-classes": "^8.0.0",
"sanctuary-type-identifiers": "^2.0.0"
},
"devDependencies": {
"@std/esm": "0.18.0",
"@std/esm": "0.19.3",
"benchmark": "^2.1.0",

@@ -86,8 +86,8 @@ "chai": "^4.1.2",

"rimraf": "^2.6.2",
"rollup": "^0.53.0",
"rollup": "^0.54.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"typescript": "^2.6.1",
"xyz": "^2.0.1"
"xyz": "^3.0.0"
}
}

@@ -1,1 +0,12 @@

export function setImmediate(f, x){ return setTimeout(f, 0, x) }
/* istanbul ignore file: environment-specific */
/* eslint-disable no-undef */
export const scope = typeof self === 'object' ? self :
typeof global === 'object' ? global :
typeof window === 'object' ? window :
{};
/* eslint-enable no-undef */
export const setImmediate = typeof scope.setImmediate === 'function' ?
scope.setImmediate :
function setImmediate(f, x){ return setTimeout(f, 0, x) };
import Z from 'sanctuary-type-classes';
import inspectf from 'inspect-f';
import * as bc from './bc';
import {setImmediate} from './bc';
var setImmediate = typeof global.setImmediate === 'function'
? global.setImmediate
: /* istanbul ignore next: environment-specific */ bc.setImmediate;
export function noop(){}

@@ -10,0 +6,0 @@ export function moop(){ return this }

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