react-native-unzipliu

1.0.7 • Public • Published

React Native UnzipLiu npm npm

Unzip for React Native App

This is for GZip file

Version 1.0.3 Add Zip and Unzip function

Version 1.0.7 remove keyboard in Version 1.0.6

Installation

npm install react-native-unzipliu --save
react-native link react-native-unzipliu

Usage

import it into your code

import { unGzip } from 'react-native-unzipliu';

API

unGzip(source: string, target: string): Promise

unzip from source file to target file

Example

const sourcePath = `${DocumentDirectoryPath}/myFile.zip`;
const targetPath = `${DocumentDirectoryPath}/myFile.txt`;

unGzip(sourcePath, targetPath)
.then((path) => {
  console.log(`unzip completed at ${path}`);
})
.catch((error) => {
  console.log(error);
});

/react-native-unzipliu/

    Package Sidebar

    Install

    npm i react-native-unzipliu

    Weekly Downloads

    15

    Version

    1.0.7

    License

    MIT

    Unpacked Size

    543 kB

    Total Files

    59

    Last publish

    Collaborators

    • xiaomeng2018