summaryrefslogtreecommitdiffstats
path: root/node_modules/shebang-command/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/shebang-command/index.js')
-rw-r--r--node_modules/shebang-command/index.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/node_modules/shebang-command/index.js b/node_modules/shebang-command/index.js
deleted file mode 100644
index 2de70b0..0000000
--- a/node_modules/shebang-command/index.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'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 : '')
- );
-};