Socket
Book a DemoInstallSign in
Socket

blob-to-base64

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blob-to-base64

Convert Blob to base64

latest
Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
465
92.15%
Maintainers
1
Weekly downloads
 
Created
Source

blob-to-base64

Convert Blob to base64

npm package version npm downloads standard JS linter prettier code formatting travis ci build status project license make a pull request

Table of Contents

Table of Contents
  • Install
  • Usage
  • Contribute
  • License
  • Install

    Greenkeeper badge

    $ npm install blob-to-base64
    # OR
    $ yarn add blob-to-base64
    

    Usage

    const blobToBase64 = require('blob-to-base64')
    
    const button = document.querySelector('.button')
    
    button.addEventListener('click', function (event) {
      const blob = document.querySelector('.input').files[0]
    
      blobToBase64(blob, function (error, base64) {
        if (!error) {
          document.querySelector('.result').innerHTML = base64
        }
      })
    
    })
    

    Contributing

    Contributions are welcome!

    • Fork it.
    • Create your feature branch: git checkout -b my-new-feature
    • Commit your changes: git commit -am 'Add some feature'
    • Push to the branch: git push origin my-new-feature
    • Submit a pull request :D

    Or open up a issue.

    License

    Licensed under the MIT License.

    FAQs

    Package last updated on 26 Feb 2019

    Did you know?

    Socket

    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