Open
Description
Motivation
Currently, RSocket-Core implicitly brings a Buffer
polyfill called LiteBuffer
which is a minimalistic implementation of the Node Buffer
and has a limited functionality surface to satisfy rsocket-js needs. Though it might be enough for us, for others it may be a limitation point that prevents implementing required business logic.
Desired solution
For that purpose, we have to separate LiteBuffer
from the core to an external module and allow the user to bring the desired Buffer
polyfill explicitly in the project dependencies
Additional context
For more info see #110