Files
menui_backend/node_modules/mongoose/lib/helpers/topology/isAtlas.js
2020-07-08 15:37:09 +02:00

11 lines
317 B
JavaScript

'use strict';
module.exports = function isAtlas(topologyDescription) {
if (topologyDescription == null ||
topologyDescription.constructor.name !== 'TopologyDescription') {
return false;
}
return Array.from(topologyDescription.servers.keys()).
every(host => host.endsWith('.mongodb.net:27017'));
};