christianesperar 6a6db2ea23 Put dependecy libraries to bower for easy updating | 8 лет назад | |
---|---|---|
.. | ||
dist | 8 лет назад | |
docs | 8 лет назад | |
documentation | 8 лет назад | |
lib | 8 лет назад | |
vendor | 8 лет назад | |
.bower.json | 8 лет назад | |
CHANGES.md | 8 лет назад | |
Gruntfile.js | 8 лет назад | |
LICENSE.markdown | 8 лет назад | |
README.markdown | 8 лет назад | |
_config.yml | 8 лет назад | |
bower.json | 8 лет назад | |
component.json | 8 лет назад | |
index.html | 8 лет назад | |
package.json | 8 лет назад |
A library for creating, reading and editing .zip files with Javascript, with a lovely and simple API.
See http://stuartk.com/jszip for all the documentation.
var zip = new JSZip();
zip.file("Hello.txt", "Hello World\n");
var img = zip.folder("images");
img.file("smile.gif", imgData, {base64: true});
var content = zip.generate({type:"blob"});
// 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.