min_key.js 274 B

1234567891011121314
  1. /**
  2. * A class representation of the BSON MinKey type.
  3. *
  4. * @class
  5. * @return {MinKey} A MinKey instance
  6. */
  7. function MinKey() {
  8. if(!(this instanceof MinKey)) return new MinKey();
  9. this._bsontype = 'MinKey';
  10. }
  11. module.exports = MinKey;
  12. module.exports.MinKey = MinKey;