(prefix: string, commentType: MarkupComments)
| 14 | // markup comments follow format: |
| 15 | // // @prefix ActionName |
| 16 | export const markupComment = (prefix: string, commentType: MarkupComments) => |
| 17 | `${prefix} ${commentType}` |
| 18 | |
| 19 | export const markupRegex = (prefix: string) => { |
| 20 | const pattern = `(\\/\\/|#)\\s*${prefix}.*|{?\\/.*${prefix}.*\\/}?` |
no outgoing calls
no test coverage detected