yichael ae15df85ac 漫画对话提取 hai 4 meses
..
.github ae15df85ac 漫画对话提取 hai 4 meses
dist ae15df85ac 漫画对话提取 hai 4 meses
lib ae15df85ac 漫画对话提取 hai 4 meses
vendor ae15df85ac 漫画对话提取 hai 4 meses
.codeclimate.yml ae15df85ac 漫画对话提取 hai 4 meses
.editorconfig ae15df85ac 漫画对话提取 hai 4 meses
.eslintrc.js ae15df85ac 漫画对话提取 hai 4 meses
.jekyll-metadata ae15df85ac 漫画对话提取 hai 4 meses
.travis.yml ae15df85ac 漫画对话提取 hai 4 meses
CHANGES.md ae15df85ac 漫画对话提取 hai 4 meses
LICENSE.markdown ae15df85ac 漫画对话提取 hai 4 meses
README.markdown ae15df85ac 漫画对话提取 hai 4 meses
deps.js ae15df85ac 漫画对话提取 hai 4 meses
graph.svg ae15df85ac 漫画对话提取 hai 4 meses
index.d.ts ae15df85ac 漫画对话提取 hai 4 meses
package.json ae15df85ac 漫画对话提取 hai 4 meses
sponsors.md ae15df85ac 漫画对话提取 hai 4 meses
tsconfig.json ae15df85ac 漫画对话提取 hai 4 meses

README.markdown

JSZip

A library for creating, reading and editing .zip files with JavaScript, with a lovely and simple API.

See https://stuk.github.io/jszip for all the documentation.

const zip = new JSZip();

zip.file("Hello.txt", "Hello World\n");

const img = zip.folder("images");
img.file("smile.gif", imgData, {base64: true});

zip.generateAsync({type:"blob"}).then(function(content) {
    // see FileSaver.js
    saveAs(content, "example.zip");
});

/*
Results in a zip containing
Hello.txt
images/
    smile.gif
*/

License

JSZip is dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown.