export function reverse<T>(array: T[]): T[] {
  return array.slice().reverse();
}
