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

promise.allsettled

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promise.allsettled - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

6

CHANGELOG.md

@@ -8,2 +8,8 @@ # Changelog

## [v1.0.4](https://github.com/es-shims/Promise.allSettled/compare/v1.0.3...v1.0.4) - 2021-01-20
### Commits
- [Fix] properly call-bind `Promise.all` and `Promise.reject` [`1f90b0e`](https://github.com/es-shims/Promise.allSettled/commit/1f90b0efc3208486709391ffe1dd16b79ca214d4)
## [v1.0.3](https://github.com/es-shims/Promise.allSettled/compare/v1.0.2...v1.0.3) - 2021-01-20

@@ -10,0 +16,0 @@

7

implementation.js

@@ -11,6 +11,7 @@ 'use strict';

var map = require('array.prototype.map');
var callBound = require('call-bind/callBound');
var GetIntrinsic = require('get-intrinsic');
var callBind = require('call-bind');
var all = callBound('Promise.all');
var reject = callBound('Promise.reject');
var all = callBind(GetIntrinsic('%Promise.all%'));
var reject = callBind(GetIntrinsic('%Promise.reject%'));

@@ -17,0 +18,0 @@ module.exports = function allSettled(iterable) {

{
"name": "promise.allsettled",
"version": "1.0.3",
"version": "1.0.4",
"author": "Jordan Harband <ljharb@gmail.com>",

@@ -60,2 +60,3 @@ "funding": {

"es-abstract": "^1.18.0-next.2",
"get-intrinsic": "^1.0.2",
"iterate-value": "^1.0.2"

@@ -62,0 +63,0 @@ },

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