A regular expression which works correctly in Chrome fails with this error message in Firefox:
SyntaxError: invalid regexp group
The regexp looks like this: /(?<=\{\{)[a-zA-Z0-9_]+(?=\}\})/g
I want to get all chars between {{ }}.
Why doesn't this work in Firefox?