We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The BLOB data type should be of type Uint8Array.
BLOB
Uint8Array
Buffer
node
However, Buffer extends Uint8Array.
Buffer extends Uint8Array
So, Uint8Array perfectly captures what the BLOB data type is in JS-land.
Right now, using this library on browser environments would require a Buffer polyfill.
This is terrible.
The text was updated successfully, but these errors were encountered:
Adds Uint8Array support for AnyhowStep/tsql#29
cb420b8
74c92df
AnyhowStep
No branches or pull requests
The
BLOB
data type should be of typeUint8Array
.Uint8Array
is used on browser environments.Buffer
is used onnode
environments.However,
Buffer extends Uint8Array
.So,
Uint8Array
perfectly captures what theBLOB
data type is in JS-land.Right now, using this library on browser environments would require a
Buffer
polyfill.This is terrible.
The text was updated successfully, but these errors were encountered: