You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

maximize-iterator

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

maximize-iterator - npm Package Compare versions

Comparing version
1.2.0
to
1.3.0
+2
-2
lib/callIteratorNext.js

@@ -8,4 +8,4 @@ var HAS_ASYNC_ITERATOR = typeof Symbol !== 'undefined' && Symbol.asyncIterator;

.next()
.then(function (value) {
callback(null, value);
.then(function (result) {
callback(null, result.done ? null : result.value);
})

@@ -12,0 +12,0 @@ .catch(function (err) {

{
"name": "maximize-iterator",
"version": "1.2.0",
"version": "1.3.0",
"description": "Maximize the parallel calls of an iterator supporting asyncIterator interface",

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