(decls, prop, value)
| 60 | } |
| 61 | |
| 62 | function declarationExists(decls, prop, value) { |
| 63 | return decls.some(decl => decl.prop === prop && decl.value === value); |
| 64 | } |
| 65 | |
| 66 | function blacklistedSelector(blacklist, selector) { |
| 67 | if (typeof selector !== "string") return; |
no outgoing calls
no test coverage detected
searching dependent graphs…