hyper/app/lib/utils/array.js

4 lines
61 B
JavaScript
Raw Normal View History

2016-07-13 12:44:24 -08:00
export function last (arr) {
return arr[arr.length - 1];
}