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

extra-iterable

Package Overview
Dependencies
Maintainers
1
Versions
468
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-iterable - npm Package Compare versions

Comparing version 3.0.124 to 3.0.125

12

index.js

@@ -537,7 +537,7 @@ 'use strict';

var iy = y[Symbol.iterator]();
var { value, done } = iy.next();
if (done)
var b = iy.next();
if (b.done)
return 0;
var i = -1, j = -1, a = -1;
var v1 = fm(value, ++j, y);
var v1 = fm(b.value, ++j, y);
for (var u of x) {

@@ -549,6 +549,6 @@ var u1 = fm(u, ++i, x);

a = i;
var { value, done } = iy.next();
if (done)
var b = iy.next();
if (b.done)
return a;
v1 = fm(value, ++j, y);
v1 = fm(b.value, ++j, y);
}

@@ -555,0 +555,0 @@ return -1;

{
"name": "extra-iterable",
"version": "3.0.124",
"version": "3.0.125",
"description": "An iterable is a sequence of values.",

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

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