Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

selector.js 328B

1234567891011
  1. // @flow
  2. /**
  3. * Selects the thumbnail height to the quality level mapping from the config.
  4. *
  5. * @param {Object} state - The redux state.
  6. * @returns {Map<number,number>}
  7. */
  8. export function getMinHeightForQualityLvlMap(state: Object): Map<number, number> {
  9. return state['features/video-quality'].minHeightForQualityLvl;
  10. }