this.getRelativeStrengthIndexOverrides(value, /(?<=RSI14).*?(?=Over)/g, overrides);
method:
getRelativeStrengthIndexOverrides(name: string, regex: string | RegExp, overrides: any): [] {
..
}
It work fine with chrome but not in firefox. I am getting error
"SyntaxError: invalid regexp group"
Problem is with this: ?<=
in regex
I don't understand why? What is different with this regex in chrome and FF. If I am checking this page, then it should work in firefox too.