summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/shebang-command/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/shebang-command/index.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/shebang-command/index.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/shebang-command/index.js b/bin/wiki/ImportarDesdeURL/node_modules/shebang-command/index.js
new file mode 100644
index 00000000..2de70b07
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/shebang-command/index.js
@@ -0,0 +1,19 @@
+'use strict';
+var shebangRegex = require('shebang-regex');
+
+module.exports = function (str) {
+ var match = str.match(shebangRegex);
+
+ if (!match) {
+ return null;
+ }
+
+ var arr = match[0].replace(/#! ?/, '').split(' ');
+ var bin = arr[0].split('/').pop();
+ var arg = arr[1];
+
+ return (bin === 'env' ?
+ arg :
+ bin + (arg ? ' ' + arg : '')
+ );
+};