1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-23 02:04:34 +02:00

fix(menu-item): update regex from 'containsHexCode' function to avoid certain problematic characters

This commit is contained in:
cvillasenor 2024-07-11 15:29:12 -06:00
parent 26d9a10042
commit a506837ade

View File

@ -62,5 +62,5 @@ export const titleCaseEquals = function(str1, str2) {
* Whether the string contains a Hex Code * Whether the string contains a Hex Code
*/ */
export const containsHexCode = (string) => { export const containsHexCode = (string) => {
return /\w*(&#x.{2,4};)\w*/.test(string); return /\w*(&#x[0-9a-fA-F]{2,4};)\w*/.test(string);
}; };