repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use source loader for email sprite icons
[ProtonMail-WebClient.git]
/
packages
/
utils
/
lastItem.ts
blob
96d0dc9689621e8d51ab4050553f049dfb5ff3b9
1
/**
2
* Returns the last item in an array
3
*/
4
export default function lastItem<T>(array: ArrayLike<T>): T | undefined {
5
return array[array.length - 1];
6
}