( extension: string, )
| 19 | } |
| 20 | |
| 21 | export const isAcceptedExtension = ( |
| 22 | extension: string, |
| 23 | ): extension is AcceptedExtension => |
| 24 | ACCEPTED_EXTENSIONS.includes(extension as AcceptedExtension); |
| 25 | |
| 26 | export const splitTag = async ( |
| 27 | tag: string, |
no outgoing calls
no test coverage detected