mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
4 lines
61 B
JavaScript
4 lines
61 B
JavaScript
|
|
export function last (arr) {
|
||
|
|
return arr[arr.length - 1];
|
||
|
|
}
|