-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
40 lines (36 loc) · 886 Bytes
/
index.js
File metadata and controls
40 lines (36 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
exports.popByIndex = function(array,index) {
array.splice(index, 1)
return array
}
exports.popOneByValue = function (array, value) {
let newArray = []
if(typeof(array[0])=="number"){
let index = array.indexOf(value)
if(index>-1)
{
array.splice(index, 1)
return array
}
else{
return array
}
}
if(typeof(array[0])=="object" && typeof(value)=="object")
{
array.map((data,index) =>{
Object.keys(value).map((internal,i) => {
if(data[internal]==value[internal]){
}
else
{
newArray.push(data)
}
})
})
return newArray
}
}
exports.pushToIndex = function(array,index,value) {
array.splice(index, 0, value);
return array
}