mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 21:52:19 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
3
web/node_modules/shell-quote/example/env.js
generated
vendored
Normal file
3
web/node_modules/shell-quote/example/env.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
var parse = require('../').parse;
|
||||
var xs = parse('beep --boop="$PWD"', { PWD: '/home/robot' });
|
||||
console.dir(xs);
|
3
web/node_modules/shell-quote/example/op.js
generated
vendored
Normal file
3
web/node_modules/shell-quote/example/op.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
var parse = require('../').parse;
|
||||
var xs = parse('beep || boop > /byte');
|
||||
console.dir(xs);
|
3
web/node_modules/shell-quote/example/parse.js
generated
vendored
Normal file
3
web/node_modules/shell-quote/example/parse.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
var parse = require('../').parse;
|
||||
var xs = parse('a "b c" \\$def \'it\\\'s great\'');
|
||||
console.dir(xs);
|
3
web/node_modules/shell-quote/example/quote.js
generated
vendored
Normal file
3
web/node_modules/shell-quote/example/quote.js
generated
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
var quote = require('../').quote;
|
||||
var s = quote([ 'a', 'b c d', '$f', '"g"' ]);
|
||||
console.log(s);
|
Loading…
Add table
Add a link
Reference in a new issue