吕君喜 406d880ac6 first | 3 년 전 | |
---|---|---|
.. | ||
index.js | 3 년 전 | |
license | 3 년 전 | |
package.json | 3 년 전 | |
readme.md | 3 년 전 |
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