Update src/core/operations/MultiTapCipherEncode.mjs

Co-authored-by: mt3571 <75119347+mt3571@users.noreply.github.com>
This commit is contained in:
Kaustubh BM 2021-05-14 17:43:28 +05:30 committed by GitHub
parent 431e8494fc
commit 985aa50152
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ class MultiTapCipherEncode extends Operation {
if(i!=plaintext.length-1) if(i!=plaintext.length-1)
ciphertext += delim; ciphertext += delim;
} }
return ciphertext.substring(0,ciphertext.length); return ciphertext;
} }
} }