Files
sign-android-release/node_modules/shebang-command
Drew Heavner 8b97d1195a Adding updated node_modules
Bumping version to v1.0.3
Removing yarn.lock as this should be built with NPM
2020-11-13 16:28:52 -05:00
..
2020-11-13 16:28:52 -05:00
2020-11-13 16:28:52 -05:00
2020-11-13 16:28:52 -05:00
2020-11-13 16:28:52 -05:00

shebang-command Build Status

Get the command from a shebang

Install

$ npm install --save shebang-command

Usage

const shebangCommand = require('shebang-command');

shebangCommand('#!/usr/bin/env node');
//=> 'node'

shebangCommand('#!/bin/bash');
//=> 'bash'

API

shebangCommand(string)

string

Type: string

String containing a shebang.

License

MIT © Kevin Martensson