public get FormattedAuthentication()

in src/SqlConnectionConfig.ts [55:58]


    public get FormattedAuthentication(): string | undefined {
        const auth = this._parsedConnectionString['authentication'] as string | undefined;
        return auth?.replace(/\s/g, '').toLowerCase();
    }