npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

strip-shebang

2.0.0

@sindresorhus

npmHomeRepoSnykSocket
Downloads:1625
$ npm install strip-shebang
DailyWeeklyMonthlyYearly

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