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

16 lines
308 B
JavaScript

"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)
}
}