Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
mudeer-web-backup30April26
/
node_modules
/
shebang-regex
/
Filename :
index.d.ts
back
Copy
/** Regular expression for matching a [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) line. @example ``` import 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' ``` */ declare const shebangRegex: RegExp; export = shebangRegex;