Can anyone provide some insight into the purpose of this '1' in the following TS code snippet?
decryptPassPhrase() {
this.$encrypt.setPrivateKey(privateKey);
this.decryptedPassPhrase = this.$encrypt.decrypt(this.encryptedPassPhrase);
1
if (Object.is(this.textToConvert, null)) {
console.error("decryption failed");
}
}