Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

isRangeContextMediaFeature.js 333B

1234567891011
  1. 'use strict';
  2. /**
  3. * Check whether a media feature is a range context one
  4. *
  5. * @param {string} mediaFeature feature
  6. * @return {boolean} If `true`, media feature is a range context one
  7. */
  8. module.exports = function (mediaFeature) {
  9. return mediaFeature.includes('=') || mediaFeature.includes('<') || mediaFeature.includes('>');
  10. };