(identifier)
| 182 | * @returns {boolean} true when identifier is dashed, otherwise false |
| 183 | */ |
| 184 | const isDashedIdentifier = (identifier) => |
| 185 | identifier.startsWith("--") && identifier.length >= 3; |
| 186 | |
| 187 | /** |
| 188 | * `binarySearchBounds` comparator for `getComments` — hoisted so the lookup |
no outgoing calls
no test coverage detected