strip-shebang

2.0.0 • Public • Published

strip-shebang

Strip shebang (Example: #!/bin/sh) from a string

Install

$ npm install strip-shebang

Usage

import fs from 'node:fs';
import stripShebang from 'strip-shebang';

const string = fs.readFileSync('unicorns', 'utf8');
//=> #!/usr/bin/env node
//=> console.log('unicorns');

stripShebang(string);
//=>
//=> console.log('unicorns');

/strip-shebang/

    Package Sidebar

    Install

    npm i strip-shebang

    Weekly Downloads

    41

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    2.43 kB

    Total Files

    4

    Last publish

    Collaborators

    • sindresorhus