Breadbot/node_modules/shebang-regex
2022-11-07 17:45:54 -05:00
..
index.d.ts Insane number of adds to setup env and packages 2022-11-07 17:45:54 -05:00
index.js Insane number of adds to setup env and packages 2022-11-07 17:45:54 -05:00
license Insane number of adds to setup env and packages 2022-11-07 17:45:54 -05:00
package.json Insane number of adds to setup env and packages 2022-11-07 17:45:54 -05:00
readme.md Insane number of adds to setup env and packages 2022-11-07 17:45:54 -05:00

shebang-regex Build Status

Regular expression for matching a shebang line

Install

$ npm install shebang-regex

Usage

const shebangRegex = require('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'

License

MIT © Sindre Sorhus