(thing: any)
| 13 | } |
| 14 | |
| 15 | export function isTransferDescriptor(thing: any): thing is TransferDescriptor { |
| 16 | return thing && typeof thing === "object" && thing[$transferable] |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * Mark a transferable object as such, so it will no be serialized and |
no outgoing calls
no test coverage detected