1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-12 08:40:45 +00:00
notes/node_modules/stylelint/lib/utils/isRangeContextMediaFeature.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

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
}