TenantAtlas/apps/platform/.pnpm-store/v10/files/3e/f59008f2aaaa5c81d6d2305836179576dd02fe61d3f717947b8e826490abbf7eb436b6a4b215a0de211671a67ded5226a597ac55ec5d9e7e594a742a825dff
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

7 lines
184 B
Plaintext

export function arrRemove(arr, item) {
if (arr) {
const index = arr.indexOf(item);
0 <= index && arr.splice(index, 1);
}
}
//# sourceMappingURL=arrRemove.js.map