export function last(array: T[]): T | undefined { return array[array.length - 1] }