0.1.3 • Published 20 days ago

@uniiem/caesar v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
20 days ago

@uniiem/caesar

GitHub Actions Workflow Status NPM Downloads NPM Version (with dist tag) npm bundle size GitHub License

A simple caesar cipher library.

Installation

npm install @uniiem/caesar

Usage

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!'
0.1.3

20 days ago

0.1.0

20 days ago