react-native-theoplayer
Version:
A THEOplayer video component for react-native.
19 lines (17 loc) • 374 B
JavaScript
;
/**
* Represents a cue of a HLS date range metadata text track.
*
* @category Media and Text Tracks
* @public
*/
/**
* Check whether a text track cue is of type DateRangeCue.
*
* @category Media and Text Tracks
* @public
*/
export function isDateRangeCue(cue) {
return cue.customAttributes != undefined;
}
//# sourceMappingURL=DateRangeCue.js.map