(strData, strDelimiter, quoteChar)
| 285 | |
| 286 | // This will parse a delimited string into an array of arrays. |
| 287 | export function CSVToArray(strData, strDelimiter, quoteChar){ |
| 288 | |
| 289 | // Use papaparse to parse the CSV data |
| 290 | const parsedResult = Papa.parse(strData, { |
| 291 | delimiter: strDelimiter, |
| 292 | quoteChar: quoteChar, |
| 293 | }); |
| 294 | |
| 295 | // Return the parsed data. |
| 296 | return parsedResult.data; |
| 297 | } |
| 298 | |
| 299 | export function hasBinariesConfiguration(pgBrowser, serverInformation) { |
| 300 | const module = 'paths'; |
no outgoing calls
no test coverage detected