caoge c760052ff9 机车状态修改 | před 8 měsíci | |
---|---|---|
.. | ||
index.js | před 8 měsíci | |
license | před 8 měsíci | |
package.json | před 8 měsíci | |
readme.md | před 8 měsíci |
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