# purify-code 🧹

![npm](https://img.shields.io/npm/v/purify-code) ![license](https://img.shields.io/npm/l/purify-code) ![downloads](https://img.shields.io/npm/dt/purify-code)

🧹 A simple CLI to clean your JS/TS files by removing `console.log`, `debugger`, comments, and TODOs.

A CLI tool to remove:

- `console.log`
- `debugger`
- `// comments`, `/* comments */`
- TODO / FIXME notes

From JavaScript and TypeScript files.

---

## 📦 Installation

You can use it directly with `npx`:

```bash
npx purify-code ./src

```

## 📦 Install Globally

```bash
npm install -g purify-code
```

## Usage

```bash
purify-code ./your-folder
```

## Example

```bash
purify-code ./src
```

- Cleans .js and .ts files recursively
- Useful before production or committing code

## 🔒 Safe

Does not minify or rewrite logic — just removes obvious debug stuff.

### 🧑‍💻 Author

Built with ❤️ by Manindra Bollam(manindra810@gmail.com)
