shebang-regex

Regular expression for matching a shebang line

MIT 4 个版本
安装
npm install shebang-regex
yarn add shebang-regex
pnpm add shebang-regex
bun add shebang-regex
README

shebang-regex

Regular expression for matching a shebang line

Install

$ npm install shebang-regex

Usage

import shebangRegex from 'shebang-regex';

const string = '#!/usr/bin/env node\nconsole.log("unicorns");';

shebangRegex.test(string);
//=> true

shebangRegex.exec(string)[0];
//=> '#!/usr/bin/env node'

shebangRegex.exec(string)[1];
//=> '/usr/bin/env node'

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.
版本列表
4.0.0 2021-08-13
3.0.0 2019-04-27
2.0.0 2015-12-04
1.0.0 2015-02-17