Files
node-js-test/node_modules/shebang-command/index.js
T

20 lines
387 B
JavaScript
Raw Normal View History

2026-05-19 22:10:51 -07:00
'use strict';
const shebangRegex = require('shebang-regex');
module.exports = (string = '') => {
const match = string.match(shebangRegex);
if (!match) {
return null;
}
const [path, argument] = match[0].replace(/#! ?/, '').split(' ');
const binary = path.split('/').pop();
if (binary === 'env') {
return argument;
}
return argument ? `${binary} ${argument}` : binary;
};