电速宝智配引擎
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
lenovo 0e857475bf 2026年04月23日上传 3 nedēļas atpakaļ
..
.github/workflows 2026年04月23日上传 3 nedēļas atpakaļ
dist 2026年04月23日上传 3 nedēļas atpakaļ
lib 2026年04月23日上传 3 nedēļas atpakaļ
vendor 2026年04月23日上传 3 nedēļas atpakaļ
.codeclimate.yml 2026年04月23日上传 3 nedēļas atpakaļ
.editorconfig 2026年04月23日上传 3 nedēļas atpakaļ
.eslintrc.js 2026年04月23日上传 3 nedēļas atpakaļ
.jekyll-metadata 2026年04月23日上传 3 nedēļas atpakaļ
.travis.yml 2026年04月23日上传 3 nedēļas atpakaļ
CHANGES.md 2026年04月23日上传 3 nedēļas atpakaļ
LICENSE.markdown 2026年04月23日上传 3 nedēļas atpakaļ
README.markdown 2026年04月23日上传 3 nedēļas atpakaļ
deps.js 2026年04月23日上传 3 nedēļas atpakaļ
graph.svg 2026年04月23日上传 3 nedēļas atpakaļ
index.d.ts 2026年04月23日上传 3 nedēļas atpakaļ
package.json 2026年04月23日上传 3 nedēļas atpakaļ
sponsors.md 2026年04月23日上传 3 nedēļas atpakaļ
tsconfig.json 2026年04月23日上传 3 nedēļas atpakaļ

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.