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

esfunctional

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

esfunctional - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

5

lib/v1/index.js

@@ -359,3 +359,3 @@ 'use strict';

if (result.done) {
return result.value;
return result.value != null ? result.value : Promise.resolve(result.value);
} else {

@@ -367,3 +367,4 @@ return Promise.resolve(result.value).then(onFulfilled, onRejected);

if (generatorFunc.constructor.name !== 'GeneratorFunction') {
return generatorFunc(arg);
let value = generatorFunc(arg);
return value != null ? value : Promise.resolve(value);
}

@@ -370,0 +371,0 @@

2

package.json
{
"name": "esfunctional",
"version": "1.1.1",
"version": "1.1.2",
"description": "Next Generation EcmaScript Functional Helpers",

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

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