routie dev init since i didn't adhere to any proper guidance up until now
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
export function arrRemove(arr, item) {
|
||||
if (arr) {
|
||||
const index = arr.indexOf(item);
|
||||
0 <= index && arr.splice(index, 1);
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=arrRemove.js.map
|
||||
Reference in New Issue
Block a user