Code Review
/
aai
/
esr-gui.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5e120fbefe7e6474ead71061291d79be84dabd41
[aai/esr-gui.git]
/
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
10
this._bsontype = 'MinKey';
11
}
12
13
module.exports = MinKey;
14
module.exports.MinKey = MinKey;