# @uniiem/caesar

> Caesar cipher implementation in TypeScript.

Latest version **0.1.3** (published 2024-04-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install @uniiem/caesar
pnpm add @uniiem/caesar
yarn add @uniiem/caesar
bun add @uniiem/caesar
```

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2024-04-22 |
| First published | 2024-04-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | HoshinoSuzumi |
| Maintainers | hoshinosuzumi |
| Keywords | caesar-cipher, encryption, decryption |

## Links

- npm: https://www.npmjs.com/package/@uniiem/caesar
- Repository: https://github.com/HoshinoSuzumi/lib-caesar
- Homepage: https://github.com/HoshinoSuzumi/lib-caesar#readme
- Issues: https://github.com/HoshinoSuzumi/lib-caesar/issues
- npm.io page: https://npm.io/package/@uniiem/caesar

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2024-04-22
- 0.1.0 — 2024-04-22

## README

# @uniiem/caesar

![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/HoshinoSuzumi/lib-caesar/ci.yml)
![NPM Downloads](https://img.shields.io/npm/dm/%40uniiem%2Fcaesar)
![NPM Version (with dist tag)](https://img.shields.io/npm/v/%40uniiem%2Fcaesar/latest)
![npm bundle size](https://img.shields.io/bundlephobia/min/%40uniiem%2Fcaesar)
![GitHub License](https://img.shields.io/github/license/HoshinoSuzumi/lib-caesar)

A simple caesar cipher library.

## Installation

```bash
npm install @uniiem/caesar
```

## Usage

```typescript
import { encode, decode rot13 } from '@uniiem/caesar';

const encoded = encode('Caesar cipher lib test!', 3);
console.log(encoded); // 'Fdhvdu flskhu ole whvw!'
const decoded = decode(encoded, 3);
console.log(decoded); // 'Caesar cipher lib test!'
const rot13ed = rot13('Caesar cipher lib test!');
console.log(rot13ed); // 'Pnrfne pvcure yvo grkg!'
```

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