From ea1f1e5c804f15f6f3385075bef7a1dce1eda3aa Mon Sep 17 00:00:00 2001 From: Tanvish <101194211+TanvishGG@users.noreply.github.com> Date: Sat, 20 Jan 2024 18:44:59 +0530 Subject: [PATCH] Update decrypt.md --- docs/decrypt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/decrypt.md b/docs/decrypt.md index 1ea71c9..6e3dc1f 100644 --- a/docs/decrypt.md +++ b/docs/decrypt.md @@ -2,13 +2,13 @@ ## Importing ```js -const {Decrypt} = require('text-encryption-tool') +const {decrypt} = require('text-encryption-tool') ``` ## Decrypting ```js const text = "hMGbwUXZwYHICZ3TgADITRGITRWQ5BCLhYzZnN2V"; const key = "==QbsNGcuhUZnh2aUNXavFGQCdWZ290VjxWQ1l3UkZDM"; -const output = Decrypt(text,key); // Decrypting the Text. +const output = decrypt(text,key); // Decrypting the Text. console.log(output); // logging the output. ``` #### Example Output