Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2021-08-09 19:49:49 +00:00
parent 38bb211981
commit d6a5bf5c1c
96 changed files with 4450 additions and 174 deletions

34
node_modules/shebang-command/readme.md generated vendored Normal file
View file

@ -0,0 +1,34 @@
# shebang-command [![Build Status](https://travis-ci.org/kevva/shebang-command.svg?branch=master)](https://travis-ci.org/kevva/shebang-command)
> Get the command from a shebang
## Install
```
$ npm install shebang-command
```
## Usage
```js
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.