For compatibility reasons i need to change my working regex in JS:
/(?<!.*\/{2}.*)[\w?#.,]+/g
It marks every word that is not commented by // independent of the position of the comment (extra line or behind code)
How do i archive this in a way, that every browser supports it?
https://regex101.com/r/dMQjGo/1
Thanks in advance...