Encrypt and decrypt messages with Caesar Cipher.
npm install @janbican/caesar-cipherEncrypt and decrypt messages with Caesar Cipher.
npm i @janbican/caesar-cipher
``
import { encrypt, decrypt } from '@janbican/caesar-cipher'
const cipherText = encrypt('helloworld', 3)
const plainText = decrypt(cipherText, 3)
console.log(cipherText)
console.log(plainText)
``