(node)
| 117 | } |
| 118 | |
| 119 | function normalizeAngularIcuExpression(node) { |
| 120 | if (node.kind === "expansion") { |
| 121 | node.kind = "angularIcuExpression"; |
| 122 | } |
| 123 | if (node.kind === "expansionCase") { |
| 124 | node.kind = "angularIcuCase"; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | function lowerCaseIf(text, fn) { |
| 129 | const lowerCasedText = text.toLowerCase(); |
no outgoing calls
no test coverage detected
searching dependent graphs…