Internal
Converts a snake_case or UPPER-KEBAB string to camelCase. Used for mapping HLS attribute names (e.g., GROUP-ID) to JavaScript property names (e.g., groupId).
GROUP-ID
groupId
The HLS attribute name
camelCase version
camelify('CLOSED-CAPTIONS'); // 'closedCaptions' Copy
camelify('CLOSED-CAPTIONS'); // 'closedCaptions'
Converts a snake_case or UPPER-KEBAB string to camelCase. Used for mapping HLS attribute names (e.g.,
GROUP-ID) to JavaScript property names (e.g.,groupId).