I'm try to create an object in the main thread basically in this way:
createObjectBuffer( <length>, {type: 'A', proto: data, protoLength: data.byteLength}, {}, window.crossOriginIsolated ? 'shared' : 'vanilla' );
in which data is an ArrayBuffer type.
Unfortunately in the worker I'm receiving a strange buffer.proto which a type:
Proxy(Object) {objectBufferWrapper: 'objectBufferWrapper'}
How can I retrieve the "original" data info ?
Thanks a lot for your support and very good work around this library! :-)