export function emptyArray()

in history/slides/snippets/external.ts [22:24]


export function emptyArray<T>(length: number) {
  return Array.from<T>({ length })
}