电速宝智配引擎
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
lenovo 0e857475bf 2026年04月23日上传 3週間前
..
.github/workflows 2026年04月23日上传 3週間前
dist 2026年04月23日上传 3週間前
lib 2026年04月23日上传 3週間前
vendor 2026年04月23日上传 3週間前
.codeclimate.yml 2026年04月23日上传 3週間前
.editorconfig 2026年04月23日上传 3週間前
.eslintrc.js 2026年04月23日上传 3週間前
.jekyll-metadata 2026年04月23日上传 3週間前
.travis.yml 2026年04月23日上传 3週間前
CHANGES.md 2026年04月23日上传 3週間前
LICENSE.markdown 2026年04月23日上传 3週間前
README.markdown 2026年04月23日上传 3週間前
deps.js 2026年04月23日上传 3週間前
graph.svg 2026年04月23日上传 3週間前
index.d.ts 2026年04月23日上传 3週間前
package.json 2026年04月23日上传 3週間前
sponsors.md 2026年04月23日上传 3週間前
tsconfig.json 2026年04月23日上传 3週間前

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.