summaryrefslogtreecommitdiffstats
path: root/afb-client/bower_components/jszip/documentation/api_jszip/constructor.md
blob: 556473791fd871405848a15bef469581f5c06a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
title: "new JSZip() or JSZip()"
layout: default
section: api
---

__Description__ : Create a new JSZip instance.

__Arguments__ : None

__Returns__ : A new JSZip.

__Throws__ : Nothing.

<!-- __Complexity__ : Object creation in **O(1)**. -->

__Example__

```js
var zip = new JSZip();
// same as
var zip = JSZip();
```