Implemented URL query parsing for initial token /opa/?token=abcde
[src/app-framework-demo.git] / afb-client / bower_components / jszip / documentation / api_jszip / constructor.md
1 ---
2 title: "new JSZip() or JSZip()"
3 layout: default
4 section: api
5 ---
6
7 __Description__ : Create a new JSZip instance.
8
9 __Arguments__ : None
10
11 __Returns__ : A new JSZip.
12
13 __Throws__ : Nothing.
14
15 <!-- __Complexity__ : Object creation in **O(1)**. -->
16
17 __Example__
18
19 ```js
20 var zip = new JSZip();
21 // same as
22 var zip = JSZip();
23 ```