Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vdegenne/caesar

caesar cryptographic module
https://github.com/vdegenne/caesar

Last synced: about 2 months ago
JSON representation

caesar cryptographic module

Awesome Lists containing this project

README

        

# @vdegenne/caesar

caesar cryptographic module

# Usage

```javascript
const {encode} = require('@vdegenne/caesar');

const string = 'hello';
const offset = 3;

console.log(
encode(string, offset) // "khoor"
);
```

### esm support

```javascript
import {encode} from '@vdegenne/caesar';
```

# Installation

```bash
npm install @vdegenne/caesar
```