isAtlas.js 317 B

1234567891011
  1. 'use strict';
  2. module.exports = function isAtlas(topologyDescription) {
  3. if (topologyDescription == null ||
  4. topologyDescription.constructor.name !== 'TopologyDescription') {
  5. return false;
  6. }
  7. return Array.from(topologyDescription.servers.keys()).
  8. every(host => host.endsWith('.mongodb.net:27017'));
  9. };