thekevinscott / UpscalerJS

Found unreachable code JS-0025
Performance
Major
6 months ago7 months old
 5
 6export async function writeAPIDocs(dest: string) {
 7  return;
 8  const definitions = await getDefinitions(); 9  const methods = getSortedMethodsForWriting(definitions);1011  await Promise.all([12    writeAPIDocumentationFiles(dest, methods, definitions),13    writeIndexFile(dest, methods),14  ]);15}