( obj )
| 1759 | // property to be considered empty objects; this property always exists in |
| 1760 | // order to make sure JSON.stringify does not expose internal metadata |
| 1761 | function isEmptyDataObject( obj ) { |
| 1762 | for ( var name in obj ) { |
| 1763 | if ( name !== "toJSON" ) { |
| 1764 | return false; |
| 1765 | } |
| 1766 | } |
| 1767 | |
| 1768 | return true; |
| 1769 | } |
| 1770 | |
| 1771 | |
| 1772 |
no outgoing calls
no test coverage detected
searching dependent graphs…