flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
53
VISUALIZACION/node_modules/quote-stream/readme.markdown
generated
vendored
Executable file
53
VISUALIZACION/node_modules/quote-stream/readme.markdown
generated
vendored
Executable file
|
|
@ -0,0 +1,53 @@
|
|||
# quote-stream
|
||||
|
||||
transform a stream into a quoted string
|
||||
|
||||
[](https://ci.testling.com/substack/quote-stream)
|
||||
|
||||
[](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
|
||||
Loading…
Add table
Add a link
Reference in a new issue