mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-12 22:52:21 -06:00
13 lines
379 B
JavaScript
13 lines
379 B
JavaScript
/* @flow */
|
|
"use strict"
|
|
|
|
/**
|
|
* Check whether a media feature is a range context one
|
|
*
|
|
* @param {string} media feature
|
|
* @return {boolean} If `true`, media feature is a range context one
|
|
*/
|
|
module.exports = function (mediaFeature/*: string*/)/*: boolean*/ {
|
|
return mediaFeature.indexOf("=") !== -1 || mediaFeature.indexOf("<") !== -1 || mediaFeature.indexOf(">") !== -1
|
|
}
|