1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 08:17:34 -04:00
notes/node_modules/stylelint/lib/rules/findMediaOperator.js

16 lines
308 B
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
"use strict"
const rangeOperatorRegex = /[^><](>=?|<=?|=)/g
module.exports = function (atRule, cb) {
if (atRule.name.toLowerCase() !== "media") {
return
}
const params = atRule.params
let match
while ((match = rangeOperatorRegex.exec(params)) !== null) {
cb(match, params, atRule)
}
}