(obj)
| 470 | defineEventHandler(BroadcastChannel.prototype, 'messageerror'); |
| 471 | |
| 472 | function markAsUncloneable(obj) { |
| 473 | if ((typeof obj !== 'object' && typeof obj !== 'function') || obj === null) { |
| 474 | return; |
| 475 | } |
| 476 | obj[transfer_mode_private_symbol] &= ~kCloneable; |
| 477 | } |
| 478 | |
| 479 | module.exports = { |
| 480 | drainMessagePort, |
no outgoing calls
no test coverage detected