Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/shebang-command/index.js')
-rw-r--r--node_modules/shebang-command/index.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/node_modules/shebang-command/index.js b/node_modules/shebang-command/index.js
index 2de70b074..f35db3085 100644
--- a/node_modules/shebang-command/index.js
+++ b/node_modules/shebang-command/index.js
@@ -1,19 +1,19 @@
'use strict';
-var shebangRegex = require('shebang-regex');
+const shebangRegex = require('shebang-regex');
-module.exports = function (str) {
- var match = str.match(shebangRegex);
+module.exports = (string = '') => {
+ const match = string.match(shebangRegex);
if (!match) {
return null;
}
- var arr = match[0].replace(/#! ?/, '').split(' ');
- var bin = arr[0].split('/').pop();
- var arg = arr[1];
+ const [path, argument] = match[0].replace(/#! ?/, '').split(' ');
+ const binary = path.split('/').pop();
- return (bin === 'env' ?
- arg :
- bin + (arg ? ' ' + arg : '')
- );
+ if (binary === 'env') {
+ return argument;
+ }
+
+ return argument ? `${binary} ${argument}` : binary;
};