mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-08 13:00:05 +00:00
fix: special missing double dot issue
This commit is contained in:
@@ -141,7 +141,9 @@ export const convertToCSV = (
|
||||
)
|
||||
}
|
||||
|
||||
return `.${value.toLowerCase()}`
|
||||
const dot = value.includes('.') ? '' : '.'
|
||||
|
||||
return `${dot}${value.toLowerCase()}`
|
||||
}
|
||||
|
||||
// if there any present, it should have preceding (") for escaping
|
||||
|
||||
Reference in New Issue
Block a user