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.112 to 3.0.113

8

index.js

@@ -962,9 +962,9 @@ 'use strict';

}
function* rotate(x, n = 0) {
function rotate(x, n = 0) {
if (n === 0)
yield* x;
return values(x);
else if (n > 0)
yield* rotateLeft(x, n);
return rotateLeft(x, n);
else
yield* rotateRight(x, -n);
return rotateRight(x, -n);
}

@@ -971,0 +971,0 @@ function* rotateLeft(x, n) {

{
"name": "extra-iterable",
"version": "3.0.112",
"version": "3.0.113",
"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