This commit is contained in:
root
2019-11-28 20:40:02 +00:00
commit 1c78566f5b
2275 changed files with 272351 additions and 0 deletions
@@ -0,0 +1,5 @@
/*!
* ignore
*/
module.exports = function() {};
+12
View File
@@ -0,0 +1,12 @@
/*!
* Module dependencies.
*/
var Binary = require('bson').Binary;
/*!
* Module exports.
*/
module.exports = exports = Binary;
@@ -0,0 +1,5 @@
/*!
* ignore
*/
module.exports = require('bson').Decimal128;
+8
View File
@@ -0,0 +1,8 @@
/*!
* Module exports.
*/
exports.Binary = require('./binary');
exports.Decimal128 = require('./decimal128');
exports.ObjectId = require('./objectid');
exports.ReadPreference = require('./ReadPreference');
+14
View File
@@ -0,0 +1,14 @@
/*!
* [node-mongodb-native](https://github.com/mongodb/node-mongodb-native) ObjectId
* @constructor NodeMongoDbObjectId
* @see ObjectId
*/
var ObjectId = require('bson').ObjectID;
/*!
* ignore
*/
module.exports = exports = ObjectId;