Reports single char alternation (e.g.
a|b|c|d
) in a RegExp. It is simpler to use a character class (
[abcd]
) instead. This usually also provides slightly better matching performance.
New in 2017.1