New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.3.2 to 1.3.3

8

lib/v1/index.js

@@ -80,3 +80,9 @@ 'use strict';

Object.prototype[global.all] = function() {
return Promise.all(this);
if (!(this instanceof Array)) {
let mapping = this [map]((v, k) => ({key: k, value: v}));
let promise = Promise.all(mapping.map(item => item.value));
return promise.then((results) => results [mapKeys]((v, k) => mapping[k].key));
} else {
return Promise.all(this);
}
};

@@ -83,0 +89,0 @@

2

package.json
{
"name": "esfunctional",
"version": "1.3.2",
"version": "1.3.3",
"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