Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
setLastTrackMarkersStyleProperty: (propertyName: string, value: string) => {
const lastTrackMarker =
this._getHostElement().querySelector(strings.LAST_TRACK_MARKER_SELECTOR);
lastTrackMarker!.style.setProperty(propertyName, value);
},
isRTL: () => getComputedStyle(this._getHostElement()).direction === 'rtl'