summaryrefslogtreecommitdiff
path: root/src/util.ts
blob: abbf44d43842b1082652438e8f9c84d7b639f20b (plain)
1
2
3
4
/**
 * Get the last item in t
 */
export const last = <T>(t: T[]): T => t[t.length - 1];