5 var mongodb = require('mongodb');
6 var ReadPref = mongodb.ReadPreference;
9 * Converts arguments to ReadPrefs the driver
12 * @param {String|Array} pref
13 * @param {Array} [tags]
16 module.exports = function readPref(pref, tags) {
17 if (Array.isArray(pref)) {
22 if (pref instanceof ReadPref) {
31 pref = 'primaryPreferred';
37 pref = 'secondaryPreferred';
44 return new ReadPref(pref, tags);