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 2.0.34 to 2.0.35

11

index.js

@@ -764,2 +764,12 @@ /**

/**
* Adds values to the start.
* @param {Iterable} x an array
* @param {...any} vs values to add
* @returns {Iterable} iterable
*/
function* unshift(x, ...vs) {
yield* vs;
yield* x;
}
/**
* Gives passed values as array.

@@ -833,2 +843,3 @@ * @param {...any} vs values

exports.tail = tail;
exports.unshift = unshift;
exports.zip = zip;

2

package.json
{
"name": "extra-iterable",
"version": "2.0.34",
"version": "2.0.35",
"description": "Standard utility methods for Iterable.",

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

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