New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

async-es

Package Overview
Dependencies
Maintainers
4
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-es - npm Package Compare versions

Comparing version 3.2.1 to 3.2.2

10

CHANGELOG.md

@@ -0,1 +1,11 @@

# v3.2.2
- Fix potential prototype pollution exploit
# v3.2.1
- Use `queueMicrotask` if available to the environment (#1761)
- Minor perf improvement in `priorityQueue` (#1727)
- More examples in documentation (#1726)
- Various doc fixes (#1708, #1712, #1717, #1740, #1739, #1749, #1756)
- Improved test coverage (#1754)
# v3.2.0

@@ -2,0 +12,0 @@ - Fix a bug in Safari related to overwriting `func.name`

3

internal/iterator.js

@@ -29,2 +29,5 @@ import isArrayLike from './isArrayLike';

var key = okeys[++i];
if (key === '__proto__') {
return next();
}
return i < len ? {value: obj[key], key} : null;

@@ -31,0 +34,0 @@ };

2

map.js

@@ -8,3 +8,3 @@ import _map from './internal/map';

* the `iteratee` function. The `iteratee` is called with an item from `coll`
* and a callback for when it has finished processing. Each of these callback
* and a callback for when it has finished processing. Each of these callbacks
* takes 2 arguments: an `error`, and the transformed item from `coll`. If

@@ -11,0 +11,0 @@ * `iteratee` passes an error to its callback, the main `callback` (for the

{
"name": "async-es",
"description": "Higher-order functions and common patterns for asynchronous code",
"version": "3.2.1",
"version": "3.2.2",
"main": "index.js",

@@ -6,0 +6,0 @@ "author": "Caolan McMahon",

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