mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-12-11 23:07:33 +00:00
728eeefa17
* Fix file downloads from notebooks container * Add downloading message
18 lines
552 B
TypeScript
18 lines
552 B
TypeScript
export const stringToBlob = (data: string, contentType: string, sliceSize = 512): Blob => {
|
|
const byteArrays = [];
|
|
|
|
for (let offset = 0; offset < data.length; offset += sliceSize) {
|
|
const slice = data.slice(offset, offset + sliceSize);
|
|
|
|
const byteNumbers = new Array(slice.length);
|
|
for (let i = 0; i < slice.length; i++) {
|
|
byteNumbers[i] = slice.charCodeAt(i);
|
|
}
|
|
|
|
const byteArray = new Uint8Array(byteNumbers);
|
|
byteArrays.push(byteArray);
|
|
}
|
|
|
|
return new Blob(byteArrays, { type: contentType });
|
|
};
|