| 125 | console.log('\n=== Remove Duplicates from Objects ==='); |
| 126 | |
| 127 | interface User { |
| 128 | id: number; |
| 129 | name: string; |
| 130 | email: string; |
| 131 | } |
| 132 | |
| 133 | const users: User[] = [ |
| 134 | { id: 1, name: 'Alice', email: 'alice@example.com' }, |
nothing calls this directly
no outgoing calls
no test coverage detected