peach a19a732be8 commit message | před 2 roky | |
---|---|---|
.. | ||
index.js | před 2 roky | |
license | před 2 roky | |
package.json | před 2 roky | |
readme.md | před 2 roky |
Get the command from a shebang
$ npm install shebang-command
const shebangCommand = require('shebang-command');
shebangCommand('#!/usr/bin/env node');
//=> 'node'
shebangCommand('#!/bin/bash');
//=> 'bash'
Type: string
String containing a shebang.