(
patternPart: LiteralPart | {type: string; value?: string}
)
| 69 | } |
| 70 | |
| 71 | export function isLiteralPart( |
| 72 | patternPart: LiteralPart | {type: string; value?: string} |
| 73 | ): patternPart is LiteralPart { |
| 74 | return patternPart.type === 'literal' |
| 75 | } |
| 76 | |
| 77 | /* |
| 78 | 17 ECMAScript Standard Built-in Objects: |
no outgoing calls
no test coverage detected