# rot13-transform

> ROT-13 cypher implementation using transform stream

Latest version **1.0.0** (published 2015-06-26) · 0 weekly downloads

## Install

```sh
npm install rot13-transform
pnpm add rot13-transform
yarn add rot13-transform
bun add rot13-transform
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2015-06-26 |
| First published | 2014-04-30 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Andrew Crites |
| Maintainers | ajcrites |

## Links

- npm: https://www.npmjs.com/package/rot13-transform
- Repository: https://github.com/ajcrites/rot13-transform
- Homepage: https://github.com/ajcrites/rot13-transform#readme
- Issues: https://github.com/ajcrites/rot13-transform/issues
- npm.io page: https://npm.io/package/rot13-transform

## Dependencies (1)

- [readable-stream](https://npm.io/package/readable-stream.md) ^2.0.1

## Recent versions

- 1.0.0 (latest) — 2015-06-26
- 0.0.1 — 2014-04-30

## README

# ROT-13 Cypher Stream 1.0.0

Implementation of the ROT-13 cypher using streams.

rot13 is a transform stream.  You can pipe a readable
stream into it and pipe it into a writable stream.

    var rot13 = require("rot13-transform");

    ReadableStreamString("this is a string")
        .pipe(rot13())
        .pipe(process.stdout);

This prints out `guvf vf n fgevat`.

rot13 *does not* transform non-letters.  It will only transform
A-Z and a-z.

You can decrypt ROT-13 by running it through the cypher again.

    ReadableStreamString("this is a string")
        .pipe(rot13())
        .pipe(rot13())
        .pipe(process.stdout);

This prints out `this is a string`.

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