Start project for a (possible) npm package, this is a homework for my faculty and I want to publish a package in NPM.
- Node V10+
- NPM V6+
To run this project simply clone the repository, and run main.js as an example.
import Encrypter from './Cipher.js'
let enc = new Encrypter();
enc.encrypt("hola");
enc.decrypt(); // will return "hola".