Skip to content

Instantly share code, notes, and snippets.

@ilyasozkurt
Created February 24, 2023 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ilyasozkurt/04089091ed87e24ba6f2036712f3cb28 to your computer and use it in GitHub Desktop.
Save ilyasozkurt/04089091ed87e24ba6f2036712f3cb28 to your computer and use it in GitHub Desktop.
function generateProseView(subtitles) {
const paragraphs = subtitles.map(subtitle => subtitle.text);
const prose = paragraphs.join('');
return prose;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment