Former-commit-id: 336b37cf681ec2337a1e4d577213aa45f12b81d6 [formerly d8cbb6ff242f9ab3e5c857da6f6758abb0f4fc1a] [formerly 8b9089c816fae3608bf5ef8592cb776fa420a6f6 [formerly e2077efbc6a49a82c9f0fc8741304fd2fc9c7e93]] Former-commit-id: 30b063fdab7de6f2c1c5f46dd8a1dd354897f5b6 [formerly 8f83b525334b9430ddbe779c6eae3251a5590b75] Former-commit-id: bbe19a047d103531a542bebb1fe0263bec4cbd88
29 lines
614 B
JavaScript
29 lines
614 B
JavaScript
export default function getRule (rules) {
|
|
for (let i = 0; i < rules.length; i++) {
|
|
rules[i] = rules[i].toLowerCase()
|
|
}
|
|
|
|
let result = null
|
|
let find = Array.prototype.find
|
|
|
|
find.call(document.styleSheets, styleSheet => {
|
|
result = find.call(styleSheet.cssRules, cssRule => {
|
|
let found = false
|
|
|
|
if (cssRule instanceof window.CSSStyleRule) {
|
|
for (let i = 0; i < rules.length; i++) {
|
|
if (cssRule.selectorText.toLowerCase() === rules[i]) {
|
|
found = true
|
|
}
|
|
}
|
|
}
|
|
|
|
return found
|
|
})
|
|
|
|
return result != null
|
|
})
|
|
|
|
return result
|
|
}
|