# @blackglory/pass

> The dead simple `pass` statement from Python.

Latest version **1.1.1** (published 2023-06-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install @blackglory/pass
pnpm add @blackglory/pass
yarn add @blackglory/pass
bun add @blackglory/pass
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.1 |
| Published | 2023-06-11 |
| First published | 2021-12-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | BlackGlory |
| Maintainers | black_glory |

## Links

- npm: https://www.npmjs.com/package/@blackglory/pass
- Repository: https://github.com/BlackGlory/pass
- Homepage: https://github.com/BlackGlory/pass#readme
- Issues: https://github.com/BlackGlory/pass/issues
- npm.io page: https://npm.io/package/@blackglory/pass

## Recent versions

- 1.1.1 (latest) — 2023-06-11
- 1.1.0 — 2022-08-29
- 1.0.1 — 2022-08-01
- 1.0.0 — 2022-03-05
- 0.1.0 — 2021-12-04

## README

# pass
The dead simple `pass` statement from Python.

## Install
```sh
npm install --save @blackglory/pass
# or
yarn add @blackglory/pass
```

## Usage
```ts
import { pass } from '@blackglory/pass'

try {
  // ...
} catch {
  pass()
}
```

## Why?
Sometimes you just want to write an empty statement or empty block,
but the linter does not allow you to do this.

You don't want to write comments to bypass the linter,
because that looks terrible.

## API
### pass
```ts
function pass(): void
```

### passAsync
```ts
function passAsync(): Promise<void>
```

---
_Source: https://npm.io/package/@blackglory/pass · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
