summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/exec
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/exec')
-rw-r--r--node_modules/locutus/php/exec/escapeshellarg.js18
-rw-r--r--node_modules/locutus/php/exec/escapeshellarg.js.map1
-rw-r--r--node_modules/locutus/php/exec/index.js4
-rw-r--r--node_modules/locutus/php/exec/index.js.map1
4 files changed, 24 insertions, 0 deletions
diff --git a/node_modules/locutus/php/exec/escapeshellarg.js b/node_modules/locutus/php/exec/escapeshellarg.js
new file mode 100644
index 0000000..3672042
--- /dev/null
+++ b/node_modules/locutus/php/exec/escapeshellarg.js
@@ -0,0 +1,18 @@
+'use strict';
+
+module.exports = function escapeshellarg(arg) {
+ // discuss at: http://locutus.io/php/escapeshellarg/
+ // original by: Felix Geisendoerfer (http://www.debuggable.com/felix)
+ // improved by: Brett Zamir (http://brett-zamir.me)
+ // example 1: escapeshellarg("kevin's birthday")
+ // returns 1: "'kevin\\'s birthday'"
+
+ var ret = '';
+
+ ret = arg.replace(/[^\\]'/g, function (m, i, s) {
+ return m.slice(0, 1) + '\\\'';
+ });
+
+ return "'" + ret + "'";
+};
+//# sourceMappingURL=escapeshellarg.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/exec/escapeshellarg.js.map b/node_modules/locutus/php/exec/escapeshellarg.js.map
new file mode 100644
index 0000000..e325970
--- /dev/null
+++ b/node_modules/locutus/php/exec/escapeshellarg.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/exec/escapeshellarg.js"],"names":["module","exports","escapeshellarg","arg","ret","replace","m","i","s","slice"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,cAAT,CAAyBC,GAAzB,EAA8B;AAC7C;AACA;AACA;AACA;AACA;;AAEA,MAAIC,MAAM,EAAV;;AAEAA,QAAMD,IAAIE,OAAJ,CAAY,SAAZ,EAAuB,UAAUC,CAAV,EAAaC,CAAb,EAAgBC,CAAhB,EAAmB;AAC9C,WAAOF,EAAEG,KAAF,CAAQ,CAAR,EAAW,CAAX,IAAgB,MAAvB;AACD,GAFK,CAAN;;AAIA,SAAO,MAAML,GAAN,GAAY,GAAnB;AACD,CAdD","file":"escapeshellarg.js","sourcesContent":["module.exports = function escapeshellarg (arg) {\n // discuss at: http://locutus.io/php/escapeshellarg/\n // original by: Felix Geisendoerfer (http://www.debuggable.com/felix)\n // improved by: Brett Zamir (http://brett-zamir.me)\n // example 1: escapeshellarg(\"kevin's birthday\")\n // returns 1: \"'kevin\\\\'s birthday'\"\n\n var ret = ''\n\n ret = arg.replace(/[^\\\\]'/g, function (m, i, s) {\n return m.slice(0, 1) + '\\\\\\''\n })\n\n return \"'\" + ret + \"'\"\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/php/exec/index.js b/node_modules/locutus/php/exec/index.js
new file mode 100644
index 0000000..8552453
--- /dev/null
+++ b/node_modules/locutus/php/exec/index.js
@@ -0,0 +1,4 @@
+'use strict';
+
+module.exports['escapeshellarg'] = require('./escapeshellarg');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/php/exec/index.js.map b/node_modules/locutus/php/exec/index.js.map
new file mode 100644
index 0000000..7c69073
--- /dev/null
+++ b/node_modules/locutus/php/exec/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/php/exec/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,gBAAf,IAAmCC,QAAQ,kBAAR,CAAnC","file":"index.js","sourcesContent":["module.exports['escapeshellarg'] = require('./escapeshellarg')\n"]} \ No newline at end of file