.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / shebang-command / index.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/shebang-command/index.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/shebang-command/index.js
new file mode 100644 (file)
index 0000000..f35db30
--- /dev/null
@@ -0,0 +1,19 @@
+'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;
+};