Const
Regular expression for matching rarity text and symbols.
CHARACTER_RARITY_REGEX.test('sᴘᴇᴄɪᴀʟ'); // trueCHARACTER_RARITY_REGEX.test('Λ'); // trueconst match = CHARACTER_RARITY_REGEX.exec('345 | [Λ] #4');console.log(match[1]); // prints 'Λ'
Regular expression for matching rarity text and symbols.