Source: node_modules/mongodb-core/node_modules/bson/lib/bson/max_key.js

/**
 * A class representation of the BSON MaxKey type.
 *
 * @class Represents a BSON MaxKey type.
 * @return {MaxKey} A MaxKey instance
 */
function MaxKey() {
  if(!(this instanceof MaxKey)) return new MaxKey();
  
  this._bsontype = 'MaxKey';  
}

module.exports = MaxKey;
module.exports.MaxKey = MaxKey;
comments powered by Disqus
Documentation generated by JSDoc 3.3.0-alpha9 on Wed Oct 29 2014 13:10:23 GMT+0100 (CET)