# nativescript-base-64-manager

> atob and btoa functions for NativeScript

Latest version **1.0.0** (published 2019-12-05) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install nativescript-base-64-manager
pnpm add nativescript-base-64-manager
yarn add nativescript-base-64-manager
bun add nativescript-base-64-manager
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2019-12-05 |
| First published | 2019-12-05 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 8.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Your Name |
| Maintainers | alessio.bianchini |
| Keywords | NativeScript, JavaScript, Android, iOS |

## Links

- npm: https://www.npmjs.com/package/nativescript-base-64-manager
- Repository: https://github.com/alessiobianchini/nativescript-base-64-manager
- Issues: https://github.com/alessiobianchini/nativescript-base-64-manager/issues
- npm.io page: https://npm.io/package/nativescript-base-64-manager

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2019-12-05

## README

# Base 64 Manager
## nativescript-base-64-manager

https://github.com/alessiobianchini/nativescript-base-64-manager

This plugin offers the standards atob and btoa javascript functions for Android and iOS. 

## Installation

```javascript
tns plugin add nativescript-base-64-manager
```

## Usage 
	
```javascript
import { Base64Manager } from 'nativescript-base-64-manager';

const base64String = "QmFzZSA2NCBNYW5hZ2VyIGlzIHdvcmtpbmchIQ=="
const standardString = "Base 64 Manager is working!!"
const _base64Manager = new Base64Manager();

console.log(standardString + " -> btoa -> " + _base64Manager.btoa(standardString));
console.log(base64String + " -> atob -> " + _base64Manager.atob(base64String));
```

---
_Source: https://npm.io/package/nativescript-base-64-manager · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
