1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-13 09:00:04 +00:00

style: lint

This commit is contained in:
Mihajlo Medjedovic
2021-10-15 12:57:26 +00:00
parent 8bcb1c4b7b
commit 38ab27c1ed
6 changed files with 81 additions and 71 deletions

View File

@@ -27,4 +27,4 @@ export const generateUniqueFileName = (fileName: string, extension = '') =>
export const addExtensionIfNotFound = (value: string, extension: string) => {
return !value.includes('.') ? `.${extension}` : ''
}
}