You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
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

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",