Socket
Socket
Sign inDemoInstall

b64-to-blob

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    b64-to-blob

`b64toBlob(b64Data: string, contentType?: string): Blob` converts a base64 string to a Blob object [as described in this Stack Overflow post](https://stackoverflow.com/questions/16245767/creating-a-blob-from-a-base64-string-in-javascript).


Version published
Maintainers
1
Install size
8.82 kB
Created

Readme

Source

b64toBlob(b64Data: string, contentType?: string): Blob converts a base64 string to a Blob object as described in this Stack Overflow post.

Note that the Blob class only exists in browsers, not Node, so this package is only meant for use in the browser and simulated browser environments, not as part of a typical Node server.

Example Usage

This module uses the UMD returnExports pattern to export itself for either AMD or Node/Webpack module loading, falling back to a global browser definition if neither are available.

With Webpack

npm install b64-to-blob
var b64toBlob = require('b64-to-blob');

var contentType = 'image/png';
var b64Data =
    'iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACN' +
    'byblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHx' +
    'gljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==';

var blob = b64toBlob(b64Data, contentType);

var blobUrl = URL.createObjectURL(blob);
window.location = blobUrl;

Without a Build Step

<script src="https://unpkg.com/b64-to-blob"></script>
<script>
    var contentType = 'image/png';
    var b64Data =
        'iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACN' +
        'byblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHx' +
        'gljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==';

    var blob = b64toBlob(b64Data, contentType);

    var blobUrl = URL.createObjectURL(blob);
    window.location = blobUrl;
</script>

FAQs

Last updated on 21 Aug 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc