UInt8Array toBase64 and fromBase64 support #3766
cmackenzie1
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
We will get these automatically when v8 makes them available. I'm not currently aware what their timeline for these looks like. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would be great to add the following APIs.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/toBase64
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/fromBase64
Currently, as a workaround I am using NodeJS
Buffer.from(payload, 'base64')
andBuffer.from(message.data).toString('base64')
Beta Was this translation helpful? Give feedback.
All reactions