mongodb-rag-core
Version:
Common elements used by MongoDB Chatbot Framework components.
14 lines • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.prettyPrintMongoDbDocument = void 0;
const mongodb_1 = require("mongodb");
/**
Converts MongoDB documents with BSON types to a readable string format using EJSON.
*/
function prettyPrintMongoDbDocument(document) {
return mongodb_1.BSON.EJSON.stringify(document, {
relaxed: true,
});
}
exports.prettyPrintMongoDbDocument = prettyPrintMongoDbDocument;
//# sourceMappingURL=prettyPrintMongoDbDocument.js.map