mirror of
https://github.com/sartography/bpmn-js-spiffworkflow.git
synced 2025-02-23 21:18:12 +00:00
9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
// https://stackoverflow.com/a/5767357/6090676
|
|
export function removeFirstInstanceOfItemFromArrayInPlace(arr, value) {
|
|
const index = arr.indexOf(value);
|
|
if (index > -1) {
|
|
arr.splice(index, 1);
|
|
}
|
|
return arr;
|
|
}
|