Const
Regular expression for matching rarity text and symbols.
SEQUENCE_REGEX.test('MAIN'); // trueSEQUENCE_REGEX.test('K-POP'); // trueconst match = SEQUENCE_REGEX.exec('SID:** 89 | `MAIN`');console.log(match[1]); // prints 'MAIN'
Regular expression for matching rarity text and symbols.