TenantAtlas/apps/platform/.pnpm-store/v10/files/21/255998d11442c3a8c2b036949f70cf897bc92a23a3199fe6d32439e9979e1ed370d01ab6a1928446bd12a4f0d72ae1252ee524f4ca1f1611cf2d620ea6e77b
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
182 B
Plaintext

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