Socket
Socket
Sign inDemoInstall

react-native-quick-base64

Package Overview
Dependencies
514
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-native-quick-base64

A native implementation of base64 in C++ for React Native


Version published
Weekly downloads
22K
decreased by-1.07%
Maintainers
1
Install size
2.02 MB
Created
Weekly downloads
 

Readme

Source

react-native-quick-base64

A native implementation of Base64 in C++ for React Native.

~16x faster than base64-js on an iPhone 15 Pro Max simulator. Try the benchmarks under example.

iPhoneAndroid
iPhoneAndroid

Installation

npm install react-native-quick-base64

Usage

import { btoa, atob } from 'react-native-quick-base64'

const base64 = btoa('foo')
const decoded = atob(base64)

Methods

Compatible with base64-js.

byteLength(b64: string): number

Takes a base64 string and returns length of byte array.

toByteArray(b64: string, removeLinebreaks: boolean = false): Uint8Array

Takes a base64 string and returns a byte array. Optional removeLinebreaks removes all \n characters.

fromByteArray(uint8: Uint8Array, urlSafe: boolean = false): string

Takes a byte array and returns a base64 string. Optional urlSafe flag true will use the URL-safe dictionary.

btoa(data: string): string

Encodes a string in base64.

atob(b64: string): string

Decodes a base64 encoded string.

shim()

Adds btoa and atob functions to global.

trimBase64Padding = (str: string): string

Trims the = padding character(s) off of the end of a base64 encoded string. Also, for base64url encoded strings, it will trim off the trailing . character(s).

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT by Takuya Matsuyama

Keywords

FAQs

Last updated on 25 Apr 2024

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