Philipp Horstenkamp 318515b9c4
All checks were successful
Lint / pre-commit Linting (push) Successful in 29s
Update dependencies (#20)
- @actions/core
- glob
- screeps-api

Reviewed-on: #20
Co-authored-by: Philipp Horstenkamp <philipp@horstenkamp.de>
Co-committed-by: Philipp Horstenkamp <philipp@horstenkamp.de>
2025-04-12 13:43:45 +02:00
..
2025-04-12 13:43:45 +02:00
2025-04-12 13:43:45 +02:00
2025-04-12 13:43:45 +02:00
2025-04-12 13:43:45 +02:00

shebang-command Build Status

Get the command from a shebang

Install

$ npm install 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.