UNPKG

mongodb-rag-core

Version:

Common elements used by MongoDB Chatbot Framework components.

12 lines 525 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.redactMongoDbConnectionUri = void 0; /** Replace MongoDB conneciton URI username and password with `"<USERNAME>:<PASSWORD>"` so that the URI is safe to log/persist. */ function redactMongoDbConnectionUri(uri) { return uri.replace(/mongodb(\+srv)?:\/\/([^:]+):([^@]+)@/g, "mongodb$1://<USERNAME>:<PASSWORD>@"); } exports.redactMongoDbConnectionUri = redactMongoDbConnectionUri; //# sourceMappingURL=redactMongoDbConnectionUri.js.map