Open
Description
In our project we have to decode maps from strings which size is pretty big (up to 20mb) and JSON.decode is slow in this case. Passing such strings to isolate to decode and get it back is even slower because the data is copied.
Could you please consider the way to use transferrables to pass data between isolates. Something like that: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers#Passing_data_by_transferring_ownership_(transferable_objects)
Thanks