Daniel Ternyak 37008e9fe9 Complete Generate/Create Wallet Flow (#38)
* GenerateWallet: Download real UTC file.

* Paper wallet (#45)

* Working paper wallet (#52)

* Reset Generate Wallet state when component will unmount
2017-07-16 16:02:13 -05:00

10 lines
263 B
JavaScript

// @flow
export function makeBlob(mime: string, str: string | Object) {
str = typeof str === 'object' ? JSON.stringify(str) : str;
if (str === null) return '';
const blob = new Blob([str], {
type: mime
});
return window.URL.createObjectURL(blob);
}