https://github.com/melonattacker/caesar-cipher-tool
https://github.com/melonattacker/caesar-cipher-tool
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/melonattacker/caesar-cipher-tool
- Owner: melonattacker
- License: mit
- Created: 2020-08-23T05:09:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-23T08:26:10.000Z (almost 6 years ago)
- Last Synced: 2025-05-04T17:07:31.697Z (about 1 year ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# caesar-cipher-tool 
caesar-cipher-tool is a caesal cipher library for javascript and Node.js.
You can shift alphabets to the right by the number(0-25) you specify.
## Installation
```
$ npm i caesar-cipher-tool
```
## Usage
```:js
const tool = require('caesar-cipher-tool');
const output = tool.caesar("Hello, World.", 3);
console.log(output); // Khoor, Zruog.
```