mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 05:27:15 -04: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
|
||
|
}
|