Name | Date | Size | |
---|---|---|---|
.. | 20-Dec-2016 | 4 KiB | |
jszip.min.js | 20-Dec-2016 | 73.7 KiB | |
LICENSE.markdown | 20-Dec-2016 | 32.9 KiB | |
README.chromium | 20-Dec-2016 | 436 | |
README.markdown | 20-Dec-2016 | 616 |
README.chromium
1Name: JSZip 2Short Name: JSZip 3URL: https://github.com/Stuk/jszip 4Date: Wed Aug 28 23:10:31 EST 2013 5Revision: 1b5ef3c66bd676c24dd7337ca02ecc99e119e205 6License: LICENSE.markdown 7License File: MIT 8Security Critical: no 9 10Description: 11Create, read and edit .zip files with Javascript 12 13Local Modifications: 14I deleted the below comment from jszip-inflate.js in order to make things load 15correctly. 16 //@ sourceMappingURL=rawinflate.min.js.map 17
README.markdown
1JSZip 2===== 3 4A library for creating, reading and editing .zip files with Javascript, with a 5lovely and simple API. 6 7See http://stuartk.com/jszip for all the documentation 8 9```javascript 10var zip = new JSZip(); 11 12zip.file("Hello.txt", "Hello World\n"); 13 14var img = zip.folder("images"); 15img.file("smile.gif", imgData, {base64: true}); 16 17var content = zip.generate(); 18 19location.href = "data:application/zip;base64," + content; 20/* 21Results in a zip containing 22Hello.txt 23images/ 24 smile.gif 25*/ 26``` 27 28License 29======= 30 31JSZip is dual-licensed. You may use it under the MIT license *or* the GPLv3 32license. See LICENSE.markdown. 33