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

extra-array

Package Overview
Dependencies
Maintainers
1
Versions
856
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extra-array - npm Package Compare versions

Comparing version 4.1.29 to 4.1.30

5

index.js

@@ -1197,6 +1197,7 @@ 'use strict';

}
function splice(x, i, n = x.length - i, ...vs) {
function splice(x, i, n = x.length, ...vs) {
var i = index(x, i);
return concat$(x.slice(0, i), vs, x.slice(i + n));
}
function splice$(x, i, n = x.length - i, ...vs) {
function splice$(x, i, n = x.length, ...vs) {
x.splice(i, n, ...vs);

@@ -1203,0 +1204,0 @@ return x;

2

package.json
{
"name": "extra-array",
"version": "4.1.29",
"version": "4.1.30",
"description": "An array is a collection of values, stored contiguously.",

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

Sorry, the diff of this file is too big to display

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