el-beeswarm
Version:
<div style="display: flex; padding: 1rem; flex-direction: column; align-items: center; justify-content: center; height: 100vh; text-align: center; display: flex;
12 lines (10 loc) • 333 B
JavaScript
;
/**
* Check whether a media feature is a range context one
*
* @param {string} mediaFeature feature
* @return {boolean} If `true`, media feature is a range context one
*/
module.exports = function (mediaFeature) {
return mediaFeature.includes('=') || mediaFeature.includes('<') || mediaFeature.includes('>');
};