1 var Int32 = function(value) {
2 if(!(this instanceof Int32)) return new Int32(value);
4 this._bsontype = 'Int32';
9 * Access the number value.
12 * @return {number} returns the wrapped int32 number.
14 Int32.prototype.valueOf = function() {
21 Int32.prototype.toJSON = function() {
25 module.exports = Int32;
26 module.exports.Int32 = Int32;