(filepath: string)
| 44 | }; |
| 45 | |
| 46 | const isApp = (filepath: string) => { |
| 47 | return path.extname(filepath).toLowerCase() === ".app"; |
| 48 | }; |
| 49 | |
| 50 | const isPDF = (filepath: string) => { |
| 51 | return path.extname(filepath).toLowerCase() === ".pdf"; |
no outgoing calls
no test coverage detected