Dailin 415ba84223 | há 3 anos | ||
---|---|---|---|
.. | |||
index.js | há 3 anos | ||
license | há 3 anos | ||
package.json | há 3 anos | ||
readme.md | há 3 anos |
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.