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
I have recently learned that regexes get re-created *1 every time they are executed, unless they are stored in a constant, so this could (at least slightly) improve performance by not having to re-compile the regexes everytime a line is checked, though i have not measured performance..
*1 apparently it is only compiled once but every time they are executed a new regexp object is created and needs to be gb collected
I have recently learned that regexes get re-created *1 every time they are executed, unless they are stored in a constant, so this could (at least slightly) improve performance by not having to re-compile the regexes everytime a line is checked, though i have not measured performance..
*1 apparently it is only compiled once but every time they are executed a new regexp object is created and needs to be gb collected
MDN Guide: Regular Expressions
also see this stackoverflow thread
probably should do some measurements just to be sure, but from my slight look it should be at least somewhat better for V8
The text was updated successfully, but these errors were encountered: