All files / src/utils mediakeys-helper.js

75% Statements 3/4
80% Branches 4/5
100% Functions 1/1
75% Lines 3/4
1 2 3 4 5 6 7 8 9 10 11 1211x 11x 11x                  
const requestMediaKeySystemAccess = (function () {
  Eif (typeof window !== 'undefined' && window.navigator && window.navigator.requestMediaKeySystemAccess) {
    return window.navigator.requestMediaKeySystemAccess.bind(window.navigator);
  } else {
    return null;
  }
})();
 
export {
  requestMediaKeySystemAccess
};