(file: LB.File, extention: string)
| 13 | } |
| 14 | |
| 15 | export function getCodeFileName(file: LB.File, extention: string) { |
| 16 | const id = file.id.toString().padStart(4, "0") |
| 17 | return `file-${id + extention}` |
| 18 | } |
| 19 | |
| 20 | export function getFileFullNameInCode(name: string) { |
| 21 | return Constant.Folder + "/code" + APP_VERSION_NUMBER + '/' + name |
no test coverage detected