export function getRandomLibrarySet()

in src/lib/library.ts [247:250]


export function getRandomLibrarySet(count = 5): LibraryEntry[] {
  const availableLibrary = Object.values(LIBRARY);
  return availableLibrary.sort(() => Math.random() - 0.5).slice(0, count);
}