export function emptyArray()

in bricks/slides/snippets/external.ts [5:7]


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