(id: number)
| 98 | const __PROTO__ = '__proto__'; |
| 99 | |
| 100 | function serializeByValueID(id: number): string { |
| 101 | return '$' + id.toString(16); |
| 102 | } |
| 103 | |
| 104 | function serializePromiseID(id: number): string { |
| 105 | return '$@' + id.toString(16); |
no test coverage detected