Socket
Socket
Sign inDemoInstall

base64-blob

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    base64-blob

A module for interconversion of base64 and blob, wrapped by Promise


Version published
Weekly downloads
2.2K
decreased by-20.79%
Maintainers
1
Install size
15.8 kB
Created
Weekly downloads
 

Readme

Source

base64-blob

NPM Version Download Month gzip with dependencies: .5kb typescript pkg.module

pkg.module supported, which means that you can apply tree-shaking in you project

A module for interconversion of base64 and blob, wrapped by Promise

You may need a Promise polyfill while use old IE browser

repository

https://github.com/livelybone/base64-blob.git

Demo

http://github.com/livelybone/base64-blob@readme

Installation

npm i -S base64-blob

Global name

Base64_Blob

Usage

import { base64ToBlob, blobToBase64 } from 'base64-blob'

when you want to set this module as external while you are developing another module, you should import it like this:

import * as Base64_Blob  from 'base64-blob'

// then use it by need

Use in html, see what your can use in CDN: unpkg

<script src="https://unpkg.com/base64-blob@[version]/lib/umd/index.js"></script>

Functions

/** Format: /^data:[\w\d]*\/[\d\w]*;base64,.*$/ */
type Base64Url = string

base64ToBlob

(base64: Base64Url) => Promise<Blob>

blobToBase64

(blob: Blob) => Promise<Base64Url>

Keywords

FAQs

Last updated on 23 Jul 2019

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