What is the effect of the `transfer` option on the original ArrayBuffer after this call?const buf = new ArrayBuffer(8); const c = structuredClone(buf, { transfer: [buf] }); console.log(c.byteLength, buf.byteLength);