Split string by
\r\nor\nor\rfor next.
npm install -S @jswork/next-splitlinesimport'@jswork/next-splitlines';conststr=`100:00:03,776 --> 00:00:09,152Technology trends may push Silicon Valley back to the future.200:00:09,152 --> 00:00:19,009Carver Mead, a pioneer in integrated circuits and a professor of computer science at the California Institute of Technology,300:00:19,009 --> 00:00:33,473notes there are now work-stations that enable engineers to design, test and produce chips right on their desks, much the way an editor creates a newsletter on a Macintosh.`;constliens=nx.splitlines(str);/*[ '1', '00:00:03,776 --> 00:00:09,152', 'Technology trends may push Silicon Valley back to the future.', '', '2', '00:00:09,152 --> 00:00:19,009', 'Carver Mead, a pioneer in integrated circuits and a professor of computer science at the California Institute of Technology,', '', '3', '00:00:19,009 --> 00:00:33,473', 'notes there are now work-stations that enable engineers to design, test and produce chips right on their desks, much the way an editor creates a newsletter on a Macintosh.', '', ''];*/Code released under the MIT license.