(obj)
| 1088 | // This simply checks if the object is marked as untransferable and doesn't |
| 1089 | // check whether we are able to transfer it. |
| 1090 | function isMarkedAsUntransferable(obj) { |
| 1091 | if (obj == null) |
| 1092 | return false; |
| 1093 | // Private symbols are not inherited. |
| 1094 | return obj[untransferable_object_private_symbol] !== undefined; |
| 1095 | } |
| 1096 | |
| 1097 | function createUnsafeBuffer(size) { |
| 1098 | if (size <= 64) { |
no outgoing calls
no test coverage detected
searching dependent graphs…