Secure Encryption as easy as a-b-c. All you need to do is import a module and call a function 😮!
import { AESEncryption } from 'aes-password';
const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
import { AESEncryption } from 'aes-password';
const encrypted = AESEncryption.encrypt('My Plain Text', 'Password');
const decrypted = AESEncryption.decrypt(encrypted, 'Password');