diff --git a/src/crypto/public_key/rsa.js b/src/crypto/public_key/rsa.js index bf7ddbc3..b8e5518e 100644 --- a/src/crypto/public_key/rsa.js +++ b/src/crypto/public_key/rsa.js @@ -167,7 +167,7 @@ function RSA() { }; keys = webCrypto.generateKey(keyGenOpt, true, ['sign', 'verify']); - if(!(keys instanceof Promise)) { // IE11 KeyOperation + if (!(keys instanceof Promise)) { // IE11 KeyOperation keys = convertKeyOperation(keys, 'Error generating RSA key pair.'); } }