Socket
Socket
Sign inDemoInstall

btoa-lite

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    btoa-lite

Smallest/simplest possible means of using btoa with both Node and browserify


Version published
Weekly downloads
1.5M
increased by2.2%
Maintainers
1
Install size
4.05 kB
Created
Weekly downloads
 

Readme

Source

btoa-lite

Smallest/simplest possible means of using btoa with both Node and browserify.

In the browser, encoding base64 strings is done using:

var encoded = btoa(decoded)

However in Node, it's done like so:

var encoded = new Buffer(decoded).toString('base64')

You can easily check if Buffer exists and switch between the approaches accordingly, but using Buffer anywhere in your browser source will pull in browserify's Buffer shim which is pretty hefty. This package uses the main and browser fields in its package.json to perform this check at build time and avoid pulling Buffer in unnecessarily.

Usage

NPM

encoded = btoa(decoded)

Returns the base64-encoded value of a string.

License

MIT. See LICENSE.md for details.

Keywords

FAQs

Last updated on 25 Jun 2015

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