yrik 0fb20a58e3 提交 il y a 4 ans
..
index.js eec7f449c9 first commit il y a 4 ans
license eec7f449c9 first commit il y a 4 ans
package.json 0fb20a58e3 提交 il y a 4 ans
readme.md eec7f449c9 first commit il y a 4 ans

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