@@ -1571,6 +1571,31 @@ function reduceToSingleString(
1571
1571
return `${ braces [ 0 ] } ${ ln } ${ join ( output , `,\n${ indentation } ` ) } ${ braces [ 1 ] } ` ;
1572
1572
}
1573
1573
1574
+ function hasBuiltInToString ( value ) {
1575
+ // Count objects that have no `toString` function as built-in.
1576
+ if ( typeof value . toString !== 'function' ) {
1577
+ return true ;
1578
+ }
1579
+
1580
+ // The object has a own `toString` property. Thus it's not not a built-in one.
1581
+ if ( hasOwnProperty ( value , 'toString' ) ) {
1582
+ return false ;
1583
+ }
1584
+
1585
+ // Find the object that has the `toString` property as own property in the
1586
+ // prototype chain.
1587
+ let pointer = value ;
1588
+ do {
1589
+ pointer = ObjectGetPrototypeOf ( pointer ) ;
1590
+ } while ( ! hasOwnProperty ( pointer , 'toString' ) ) ;
1591
+
1592
+ // Check closer if the object is a built-in.
1593
+ const descriptor = ObjectGetOwnPropertyDescriptor ( pointer , 'constructor' ) ;
1594
+ return descriptor !== undefined &&
1595
+ typeof descriptor . value === 'function' &&
1596
+ builtInObjects . has ( descriptor . value . name ) ;
1597
+ }
1598
+
1574
1599
const firstErrorLine = ( error ) => error . message . split ( '\n' ) [ 0 ] ;
1575
1600
let CIRCULAR_ERROR_MESSAGE ;
1576
1601
function tryStringify ( arg ) {
@@ -1629,29 +1654,17 @@ function formatWithOptionsInternal(inspectOptions, ...args) {
1629
1654
tempStr = formatNumber ( stylizeNoColor , tempArg ) ;
1630
1655
} else if ( typeof tempArg === 'bigint' ) {
1631
1656
tempStr = `${ tempArg } n` ;
1657
+ } else if ( typeof tempArg !== 'object' ||
1658
+ tempArg === null ||
1659
+ ! hasBuiltInToString ( tempArg ) ) {
1660
+ tempStr = String ( tempArg ) ;
1632
1661
} else {
1633
- let constr ;
1634
- if ( typeof tempArg !== 'object' ||
1635
- tempArg === null ||
1636
- ( typeof tempArg . toString === 'function' &&
1637
- // A direct own property.
1638
- ( ObjectPrototypeHasOwnProperty ( tempArg , 'toString' ) ||
1639
- // A direct own property on the constructor prototype in
1640
- // case the constructor is not an built-in object.
1641
- ( ( constr = tempArg . constructor ) &&
1642
- ! builtInObjects . has ( constr . name ) &&
1643
- constr . prototype &&
1644
- ObjectPrototypeHasOwnProperty ( constr . prototype ,
1645
- 'toString' ) ) ) ) ) {
1646
- tempStr = String ( tempArg ) ;
1647
- } else {
1648
- tempStr = inspect ( tempArg , {
1649
- ...inspectOptions ,
1650
- compact : 3 ,
1651
- colors : false ,
1652
- depth : 0
1653
- } ) ;
1654
- }
1662
+ tempStr = inspect ( tempArg , {
1663
+ ...inspectOptions ,
1664
+ compact : 3 ,
1665
+ colors : false ,
1666
+ depth : 0
1667
+ } ) ;
1655
1668
}
1656
1669
break ;
1657
1670
case 106 : // 'j'
0 commit comments