File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change
1
+ // Custom inspect property name / symbol.
2
+ var inspect = 'inspect' ;
3
+
1
4
/**
2
5
* Machine id.
3
6
*
@@ -13,7 +16,10 @@ var checkForHexRegExp = new RegExp('^[0-9a-fA-F]{24}$');
13
16
14
17
// Check if buffer exists
15
18
try {
16
- if ( Buffer && Buffer . from ) var hasBufferType = true ;
19
+ if ( Buffer && Buffer . from ) {
20
+ var hasBufferType = true ;
21
+ inspect = require ( 'util' ) . inspect . custom || 'inspect' ;
22
+ }
17
23
} catch ( err ) {
18
24
hasBufferType = false ;
19
25
}
@@ -196,7 +202,7 @@ ObjectID.prototype.toString = function(format) {
196
202
* @return {String } return the 24 byte hex string representation.
197
203
* @ignore
198
204
*/
199
- ObjectID . prototype . inspect = ObjectID . prototype . toString ;
205
+ ObjectID . prototype [ inspect ] = ObjectID . prototype . toString ;
200
206
201
207
/**
202
208
* Converts to its JSON representation.
Original file line number Diff line number Diff line change
1
+ // Custom inspect property name / symbol.
2
+ var inspect = Buffer ? require ( 'util' ) . inspect . custom || 'inspect' : 'inspect' ;
3
+
1
4
/**
2
5
* A class representation of the BSON Symbol type.
3
6
*
@@ -32,7 +35,7 @@ Symbol.prototype.toString = function() {
32
35
/**
33
36
* @ignore
34
37
*/
35
- Symbol . prototype . inspect = function ( ) {
38
+ Symbol . prototype [ inspect ] = function ( ) {
36
39
return this . value ;
37
40
} ;
38
41
You can’t perform that action at this time.
0 commit comments