github-pages-deploy-action/node_modules/shebang-regex
James Ives 5af4d9fc85 3.5.0 🎉
2020-05-14 17:33:08 -04:00
..
index.d.ts 3.5.0 🎉 2020-05-14 17:33:08 -04:00
index.js 3.5.0 🎉 2020-05-14 17:33:08 -04:00
license 3.5.0 🎉 2020-05-14 17:33:08 -04:00
package.json 3.5.0 🎉 2020-05-14 17:33:08 -04:00
readme.md 3.5.0 🎉 2020-05-14 17:33:08 -04: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