(text, fn)
| 126 | } |
| 127 | |
| 128 | function lowerCaseIf(text, fn) { |
| 129 | const lowerCasedText = text.toLowerCase(); |
| 130 | return fn(lowerCasedText) ? lowerCasedText : text; |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * @param {Ast.Attribute | Ast.Element} node |
no test coverage detected
searching dependent graphs…