03ee9cdd120366b138d609e4c2a7d230594b218c
[aai/esr-gui.git] /
1 /**
2  * A class representation of the BSON MaxKey type.
3  *
4  * @class
5  * @return {MaxKey} A MaxKey instance
6  */
7 function MaxKey() {
8   if(!(this instanceof MaxKey)) return new MaxKey();
9   
10   this._bsontype = 'MaxKey';  
11 }
12
13 module.exports = MaxKey;
14 module.exports.MaxKey = MaxKey;