XuelesszzZ 94af2b8e7b 6-30-5 | пре 1 година | |
---|---|---|
.. | ||
.github | пре 1 година | |
dist | пре 1 година | |
lib | пре 1 година | |
vendor | пре 1 година | |
.codeclimate.yml | пре 1 година | |
.editorconfig | пре 1 година | |
.eslintrc.js | пре 1 година | |
.jekyll-metadata | пре 1 година | |
.travis.yml | пре 1 година | |
CHANGES.md | пре 1 година | |
LICENSE.markdown | пре 1 година | |
README.markdown | пре 1 година | |
deps.js | пре 1 година | |
graph.svg | пре 1 година | |
index.d.ts | пре 1 година | |
package.json | пре 1 година | |
sponsors.md | пре 1 година | |
tsconfig.json | пре 1 година |
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
*/
JSZip is dual-licensed. You may use it under the MIT license or the GPLv3 license. See LICENSE.markdown.