mirror of
https://github.com/sasjs/server.git
synced 2026-01-04 13:30:04 +00:00
style: lint
This commit is contained in:
@@ -40,7 +40,9 @@ export const generateFileUploadSasCode = async (
|
||||
count: number
|
||||
}[] = []
|
||||
|
||||
const sasSessionFolderList: string[] = await listFilesInFolder(sasSessionFolder)
|
||||
const sasSessionFolderList: string[] = await listFilesInFolder(
|
||||
sasSessionFolder
|
||||
)
|
||||
sasSessionFolderList.forEach((fileName) => {
|
||||
let fileCountString = fileCount < 100 ? '0' + fileCount : fileCount
|
||||
fileCountString = fileCount < 10 ? '00' + fileCount : fileCount
|
||||
|
||||
Reference in New Issue
Block a user