initial commit
This commit is contained in:
14
node_modules/coa/lib/shell.js
generated
vendored
Normal file
14
node_modules/coa/lib/shell.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
module.exports = { escape, unescape };
|
||||
|
||||
function unescape(w) {
|
||||
w = w.charAt(0) === '"'
|
||||
? w.replace(/^"|([^\\])"$/g, '$1')
|
||||
: w.replace(/\\ /g, ' ');
|
||||
|
||||
return w.replace(/\\("|'|\$|`|\\)/g, '$1');
|
||||
}
|
||||
|
||||
function escape(w) {
|
||||
w = w.replace(/(["'$`\\])/g,'\\$1');
|
||||
return w.match(/\s+/) ? `"${w}"` : w;
|
||||
}
|
||||
Reference in New Issue
Block a user