Source: node_modules/bson/lib/bson/min_key.js

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