Dailin 415ba84223 | hace 3 años | ||
---|---|---|---|
.. | |||
index.js | hace 3 años | ||
license | hace 3 años | ||
package.json | hace 3 años | ||
readme.md | hace 3 años |
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.