@@ -65,21 +65,21 @@ exports.inspect = function (obj, showHidden, depth) {
65
65
66
66
// Functions without properties can be shortcutted.
67
67
if ( typeof value === 'function' && keys . length === 0 ) {
68
- if ( value instanceof RegExp ) {
68
+ if ( isRegExp ( value ) ) {
69
69
return '' + value ;
70
70
} else {
71
71
return '[Function]' ;
72
72
}
73
73
}
74
74
75
75
// Dates without properties can be shortcutted
76
- if ( value instanceof Date && keys . length === 0 ) {
76
+ if ( isDate ( value ) && keys . length === 0 ) {
77
77
return value . toUTCString ( ) ;
78
78
}
79
79
80
80
var base , type , braces ;
81
81
// Determine the object type
82
- if ( value instanceof Array ) {
82
+ if ( isArray ( value ) ) {
83
83
type = 'Array' ;
84
84
braces = [ "[" , "]" ] ;
85
85
} else {
@@ -89,13 +89,13 @@ exports.inspect = function (obj, showHidden, depth) {
89
89
90
90
// Make functions say that they are functions
91
91
if ( typeof value === 'function' ) {
92
- base = ( value instanceof RegExp ) ? ' ' + value : ' [Function]' ;
92
+ base = ( isRegExp ( value ) ) ? ' ' + value : ' [Function]' ;
93
93
} else {
94
94
base = "" ;
95
95
}
96
96
97
97
// Make dates with properties first say the date
98
- if ( value instanceof Date ) {
98
+ if ( isDate ( value ) ) {
99
99
base = ' ' + value . toUTCString ( ) ;
100
100
}
101
101
@@ -106,7 +106,7 @@ exports.inspect = function (obj, showHidden, depth) {
106
106
}
107
107
108
108
if ( recurseTimes < 0 ) {
109
- if ( value instanceof RegExp ) {
109
+ if ( isRegExp ( value ) ) {
110
110
return '' + value ;
111
111
} else {
112
112
return "[Object]" ;
@@ -140,7 +140,7 @@ exports.inspect = function (obj, showHidden, depth) {
140
140
str = format ( value [ key ] , recurseTimes - 1 ) ;
141
141
}
142
142
if ( str . indexOf ( '\n' ) > - 1 ) {
143
- if ( value instanceof Array ) {
143
+ if ( isArray ( value ) ) {
144
144
str = str . split ( '\n' ) . map ( function ( line ) {
145
145
return ' ' + line ;
146
146
} ) . join ( '\n' ) . substr ( 2 ) ;
@@ -191,6 +191,29 @@ exports.inspect = function (obj, showHidden, depth) {
191
191
}
192
192
return format ( obj , ( typeof depth === 'undefined' ? 2 : depth ) ) ;
193
193
} ;
194
+ function isArray ( ar ) {
195
+ return ar instanceof Array
196
+ || Array . isArray ( ar )
197
+ || ( ar && ar !== Object . prototype && isArray ( ar . __proto__ ) ) ;
198
+ }
199
+ function isRegExp ( re ) {
200
+ var s = "" + re ;
201
+ return re instanceof RegExp // easy case
202
+ || typeof ( re ) === "function" // duck-type for context-switching evalcx case
203
+ && re . constructor . name === "RegExp"
204
+ && re . compile
205
+ && re . test
206
+ && re . exec
207
+ && s . charAt ( 0 ) === "/"
208
+ && s . substr ( - 1 ) === "/" ;
209
+ }
210
+ function isDate ( d ) {
211
+ if ( d instanceof Date ) return true ;
212
+ if ( typeof d !== "object" ) return false ;
213
+ var properties = Date . prototype && Object . getOwnPropertyNames ( Date . prototype ) ;
214
+ var proto = d . __proto__ && Object . getOwnPropertyNames ( d . __proto__ ) ;
215
+ return JSON . stringify ( proto ) === JSON . stringify ( properties ) ;
216
+ }
194
217
195
218
var pWarning ;
196
219
0 commit comments