File: resume.md

package info (click to toggle)
node-jszip 3.5.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 25,100 kB
  • sloc: javascript: 5,652; makefile: 2; sh: 2
file content (21 lines) | stat: -rw-r--r-- 354 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
20
21
---
title: "resume()"
layout: default
section: api
---

Resume the stream if the stream is paused. Once resumed, the stream starts
sending `data` events again.

__Returns__ : The current StreamHelper object, for chaining.

__Since__: v3.0.0

## Example

```js
zip
.generateInternalStream({type:"uint8array"})
.on('data', function() {...})
.resume();
```