Package Exports
- shebang-regex
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (shebang-regex) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
shebang-regex 
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