mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 03:27:29 -04:00
16 lines
308 B
JavaScript
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)
|
|
}
|
|
}
|