marocchino-sticky-pull-requ.../node_modules/shebang-regex
2019-11-21 10:11:11 +09:00
..
index.js build(deps): commit production deps 2019-11-21 10:11:11 +09:00
license build(deps): commit production deps 2019-11-21 10:11:11 +09:00
package.json build(deps): commit production deps 2019-11-21 10:11:11 +09:00
readme.md build(deps): commit production deps 2019-11-21 10:11:11 +09:00

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