(filePath: string)
| 3234 | }; |
| 3235 | // Helper function to extract the base filename from a packed file path |
| 3236 | const getBaseFilename = (filePath: string): string => { |
| 3237 | const parts = filePath.split("\\"); |
| 3238 | return parts[parts.length - 1]; |
| 3239 | }; |
| 3240 | // Helper function to replace the base filename in a packed file path |
| 3241 | const replaceBaseFilename = (filePath: string, newBasename: string): string => { |
| 3242 | const parts = filePath.split("\\"); |
no outgoing calls
no test coverage detected