HTMLify
isAtlas.js
Views: 12 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 | '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')); }; |