* Is declaration need to be prefixed
(decl)
| 81 | * Is declaration need to be prefixed |
| 82 | */ |
| 83 | check(decl) { |
| 84 | let value = decl.value |
| 85 | if (!value.includes(this.name)) { |
| 86 | return false |
| 87 | } |
| 88 | |
| 89 | return !!value.match(this.regexp()) |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Return function to fast find prefixed value |
no test coverage detected