12345678910111213141516171819202122232425262728 |
-
-
-
- 'use strict';
-
- const ObjectId = require('bson').ObjectID;
-
-
-
- Object.defineProperty(ObjectId.prototype, '_id', {
- enumerable: false,
- configurable: true,
- get: function() {
- return this;
- }
- });
-
-
-
- module.exports = exports = ObjectId;
|