2.0.0 • Published 3 years ago

strip-shebang v2.0.0

Weekly downloads
32
License
MIT
Repository
github
Last release
3 years ago

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');