MCPcopy Index your code
hub / github.com/nodejs/node / TransferableBlob

Function TransferableBlob

lib/internal/blob.js:330–336  ·  view source on GitHub ↗
(handle, length, type = '')

Source from the content-addressed store, hash-verified

328}
329
330function TransferableBlob(handle, length, type = '') {
331 ObjectSetPrototypeOf(this, Blob.prototype);
332 markTransferMode(this, true, false);
333 this[kHandle] = handle;
334 this[kType] = type;
335 this[kLength] = length;
336}
337
338ObjectSetPrototypeOf(TransferableBlob.prototype, Blob.prototype);
339ObjectSetPrototypeOf(TransferableBlob, Blob);

Callers

nothing calls this directly

Calls 1

markTransferModeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…