Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/725 Co-authored-by: dpschen <dpschen@noreply.kolaente.de> Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
3 lines
No EOL
130 B
TypeScript
3 lines
No EOL
130 B
TypeScript
export function findIndexById(array : [], id : string | number) {
|
|
return array.findIndex(({id: currentId}) => currentId === id)
|
|
} |