You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionextractTimestampsFromDescription(description){constlines=description.split('\n');consttimestamps=[];// Explain: Getting maches for hh:mm:ss and mm:ssconsttimestampRegex=/\d{1,2}:\d{2}(:\d{2})?/g;for(constlineoflines){constmatches=line.match(timestampRegex);// Checking if we have a match to it// TODO: Have to modify this to JSON formatif(matches){for(constmatchofmatches){timestamps.push(match);}}}returntimestamps;}
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Code is old and not optimize for scale. Also fixes #22 issue.
Describe the solution you'd like
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Fix for timestamp finder (From ChatGPT):
The text was updated successfully, but these errors were encountered: