0.6.11 • Published 3 months ago

@whelton/react-native-zstd v0.6.11

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

react-native-zstd

ZSTD bindings for React-Native

Installation

npm install react-native-zstd

or

yarn add react-native-zstd

Usage

import { compress, decompress } from "react-native-zstd";
import { Buffer } from 'buffer';

// Compress
const compressionLevel: number = 3;
const compressed: Buffer = compress("Hello World!", compressionLevel);
console.log(compressed.toString('base64'))

// Decompress
const decompressed: string = decompress(compressed);
console.log(`decompressed: ${decompressed}`)

Contributing

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

License

MIT


Made with create-react-native-library

0.6.11

3 months ago

0.6.10

3 months ago

0.6.9

3 months ago

0.6.8

3 months ago

0.6.7

3 months ago

0.6.6

3 months ago

0.6.5

3 months ago