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

array-shift

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-shift - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

index.js

@@ -11,3 +11,3 @@ const shift = (array, old_index, new_index) => {

const down = (array, index)=>{
if(array && index > 0 && index < array.length)
if(array && index >= 0 && index < array.length-1)
shift(array, index, index+1)

@@ -17,3 +17,3 @@ };

const up = (array, index)=>{
if(array && index >= 0)
if(array && index > 0)
shift(array, index, index-1)

@@ -20,0 +20,0 @@ };

{
"name": "array-shift",
"version": "1.0.0",
"version": "1.0.1",
"description": "Shift array element up, down or custom",

@@ -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