Skip to content

Commit 0e3b14f

Browse files
committed
fix no-param catches
1 parent 3a630de commit 0e3b14f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/msrcrypto.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8428,7 +8428,7 @@ var msrCryptoVersion = "1.6.6";
84288428

84298429
}
84308430

8431-
} catch {
8431+
} catch (err) {
84328432
throw new msrcryptoUtilities.error("DataError", "");
84338433
}
84348434

lib/msrcrypto.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/ecdh.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ if ( typeof operations !== "undefined" ) {
359359

360360
}
361361

362-
} catch {
362+
} catch(err) {
363363
throw new msrcryptoUtilities.error("DataError", "");
364364
}
365365

0 commit comments

Comments
 (0)