bill 9be2d80b4e fix: 更新sdk hace 1 mes
..
dist 9be2d80b4e fix: 更新sdk hace 1 mes
lib 9be2d80b4e fix: 更新sdk hace 1 mes
vendor 9be2d80b4e fix: 更新sdk hace 1 mes
CHANGES.md 9be2d80b4e fix: 更新sdk hace 1 mes
LICENSE.markdown 9be2d80b4e fix: 更新sdk hace 1 mes
README.markdown 9be2d80b4e fix: 更新sdk hace 1 mes
deps.js 9be2d80b4e fix: 更新sdk hace 1 mes
graph.svg 9be2d80b4e fix: 更新sdk hace 1 mes
index.d.ts 9be2d80b4e fix: 更新sdk hace 1 mes
package.json 9be2d80b4e fix: 更新sdk hace 1 mes
sponsors.md 9be2d80b4e fix: 更新sdk hace 1 mes
tsconfig.json 9be2d80b4e fix: 更新sdk hace 1 mes

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.