HTMLify
ReadPreference.js
Views: 6 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | /*! * Module dependencies. */ 'use strict'; const mongodb = require('mongodb'); const ReadPref = mongodb.ReadPreference; /*! * Converts arguments to ReadPrefs the driver * can understand. * * @param {String|Array} pref * @param {Array} [tags] */ module.exports = function readPref(pref, tags) { if (Array.isArray(pref)) { tags = pref[1]; pref = pref[0]; } if (pref instanceof ReadPref) { return pref; } switch (pref) { case 'p': pref = 'primary'; break; case 'pp': pref = 'primaryPreferred'; break; case 's': pref = 'secondary'; break; case 'sp': pref = 'secondaryPreferred'; break; case 'n': pref = 'nearest'; break; } return new ReadPref(pref, tags); }; |