• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2export function makeRandomName() {
3    return "Bob!?! ";
4}
5
6export function lastElementOf<T>(arr: T[]): T | undefined {
7    if (arr.length === 0) return undefined;
8    return arr[arr.length - 1];
9}
10
11