Comparing version 3.2.1 to 3.2.2
@@ -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` |
@@ -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 @@ }; |
@@ -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", |
311489
7681