2022-08-24 15:59:08 -04:00
|
|
|
// https://stackoverflow.com/a/5767357/6090676
|
2022-08-24 12:38:47 -04:00
|
|
|
export function removeFirstInstanceOfItemFromArrayInPlace(arr, value) {
|
|
|
|
const index = arr.indexOf(value);
|
|
|
|
if (index > -1) {
|
|
|
|
arr.splice(index, 1);
|
|
|
|
}
|
|
|
|
return arr;
|
|
|
|
}
|