mirror of https://github.com/ColorlibHQ/gentelella
378 B
378 B
title | layout | section |
---|---|---|
new JSZip(data [,options]) or JSZip(data [,options]) | default | api |
This is a shortcut for
var zip = new JSZip();
zip.load(data, options);
Please see the documentation of load.
Example
var zip = new JSZip(data, options);
// same as
var zip = JSZip(data, options);