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

yallist

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yallist - npm Package Compare versions

Comparing version 3.1.1 to 4.0.0

2

package.json
{
"name": "yallist",
"version": "3.1.1",
"version": "4.0.0",
"description": "Yet Another Linked List",

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

@@ -323,3 +323,3 @@ 'use strict'

Yallist.prototype.splice = function (start, deleteCount /*, ...nodes */) {
Yallist.prototype.splice = function (start, deleteCount, ...nodes) {
if (start > this.length) {

@@ -349,4 +349,4 @@ start = this.length - 1

for (var i = 2; i < arguments.length; i++) {
walker = insert(this, walker, arguments[i])
for (var i = 0; i < nodes.length; i++) {
walker = insert(this, walker, nodes[i])
}

@@ -353,0 +353,0 @@ return ret;

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