odin-js-fundamentals-part-5/node_modules/shebang-regex
NetMan 4c89a8ee8c Initial commit 2024-01-11 09:52:05 +01:00
..
index.d.ts Initial commit 2024-01-11 09:52:05 +01:00
index.js Initial commit 2024-01-11 09:52:05 +01:00
license Initial commit 2024-01-11 09:52:05 +01:00
package.json Initial commit 2024-01-11 09:52:05 +01:00
readme.md Initial commit 2024-01-11 09:52:05 +01:00

readme.md

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