吕君喜 406d880ac6 first | há 3 anos atrás | |
---|---|---|
.. | ||
index.js | há 3 anos atrás | |
license | há 3 anos atrás | |
package.json | há 3 anos atrás | |
readme.md | há 3 anos atrás |
Get the command from a shebang
$ npm install --save shebang-command
const shebangCommand = require('shebang-command');
shebangCommand('#!/usr/bin/env node');
//=> 'node'
shebangCommand('#!/bin/bash');
//=> 'bash'
Type: string
String containing a shebang.
MIT © Kevin Martensson