alert / js / node_modules / shebang-regex /
@Réz István Réz István authored on 18 Nov 2021
..
index.js first commit 2 years ago
license first commit 2 years ago
package.json first commit 2 years ago
readme.md first commit 2 years ago
readme.md

shebang-regex Build Status

Regular expression for matching a shebang)

Install

$ npm install --save shebang-regex

Usage

var shebangRegex = require('shebang-regex');
var str = '#!/usr/bin/env node\nconsole.log("unicorns");';

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

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

License

MIT © Sindre Sorhus