Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

min_key.js 274B

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;