function stripQuotes()

in src/libs/transforms.ts [115:118]


function stripQuotes(str: string): string {
    // remove double quotes if present, as the supplier's csv parser can't handle the encoded result as per 2.7 of https://datatracker.ietf.org/doc/html/rfc4180#section-2
    return str.replace(/"/g, '');
}