X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=blobdiff_plain;f=afm-client%2Fbower_components%2Fjszip%2Fdocumentation%2Fapi_jszip%2Fconstructor_load.md;fp=afm-client%2Fbower_components%2Fjszip%2Fdocumentation%2Fapi_jszip%2Fconstructor_load.md;h=4e6f7ed560bec2b0bc8974705086e3f23182219a;hp=0000000000000000000000000000000000000000;hb=be83a8f382cf2fea98161bfd6d51719aacbf9aa9;hpb=1a4ed39bf86b2115eb0f1387d1e988462b492776 diff --git a/afm-client/bower_components/jszip/documentation/api_jszip/constructor_load.md b/afm-client/bower_components/jszip/documentation/api_jszip/constructor_load.md new file mode 100644 index 0000000..4e6f7ed --- /dev/null +++ b/afm-client/bower_components/jszip/documentation/api_jszip/constructor_load.md @@ -0,0 +1,22 @@ +--- +title: "new JSZip(data [,options]) or JSZip(data [,options])" +layout: default +section: api +--- + +This is a shortcut for + +```js +var zip = new JSZip(); +zip.load(data, options); +``` + +Please see the documentation of [load]({{site.baseurl}}/documentation/api_jszip/load.html). + +__Example__ + +```js +var zip = new JSZip(data, options); +// same as +var zip = JSZip(data, options); +```