We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e06f3f3 commit 3c729a2Copy full SHA for 3c729a2
docs/content/Batching.md
@@ -129,7 +129,7 @@ You should convert the downloaded photos through batching to a Base64 representa
129
const response = batchResponse.getResponseById(users[0]);
130
if (response.ok) {
131
var data = await response.text();
132
- const _binToBlob = await this.b64toBlob((data),'img/jpg');
+ const binToBlob = await this.b64toBlob((data),'img/jpg');
133
134
// you can associate the base64 output to an src attribute of an <img> HTML tag
135
const base64Result = await this.blobToBase64(binToBlob);
0 commit comments