This file is indexed.

/usr/share/doc/node-quote-stream/readme.markdown is in node-quote-stream 1.0.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# quote-stream

transform a stream into a quoted string

[![testling badge](https://ci.testling.com/substack/quote-stream.png)](https://ci.testling.com/substack/quote-stream)

[![build status](https://secure.travis-ci.org/substack/quote-stream.png)](http://travis-ci.org/substack/quote-stream)

# example

``` js
var quote = require('quote-stream');
process.stdin.pipe(quote()).pipe(process.stdout);
```

output:

```
$ echo beep boop | node example/stream.js
"beep boop\n"
```

# methods

``` js
var quote = require('quote-stream')
```

## var q = quote()

Return a transform stream `q` that wraps input in double quotes and adds escape
characters to the chunks.

# usage

```
usage: quote-stream

  Transform stdin to a quoted string on stdout.

```

# install

With [npm](https://npmjs.org) do:

```
npm install quote-stream
```

# license

MIT