1.0.1 • Published 1 year ago
react-native-zstd v1.0.1
react-native-zstd
ZSTD bindings for React-Native
Installation
npm install react-native-zstdor
yarn add react-native-zstdUsage
import { compress, decompress } from "react-native-zstd";
import { Buffer } from 'buffer';
// Compress
const compressionLevel: number = 3;
const compressed = compress("Hello World!", compressionLevel);
console.log(Buffer.from(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