File: constructor.md

package info (click to toggle)
node-jszip 3.1.4%2Bdfsg-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,004 kB
  • sloc: javascript: 5,697; sh: 2; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: "new JSZip() or JSZip()"
layout: default
section: api
---

Create a new JSZip instance.

__Returns__ : A new JSZip.

__Since__: v1.0.0

## Example

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