(path: string)
| 156 | } |
| 157 | |
| 158 | function isSource(path: string): boolean { |
| 159 | return SOURCE_EXTENSIONS.has(extname(path)) && !isAllowedBeforeApproval(path); |
| 160 | } |
| 161 | |
| 162 | function isApproved(text: string): boolean { |
| 163 | const match = FRONTMATTER_RE.exec(text); |
no test coverage detected