Skip to content

Commit

Permalink
fix(utils): fix accidental duplicate export. (#70)
Browse files Browse the repository at this point in the history
Fix for styling; no behavior impact.
  • Loading branch information
gkwang committed Mar 31, 2020
1 parent 77efd10 commit 30edc80
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/utils.js
Expand Up @@ -28,5 +28,5 @@ function warnInsecureAlgorithm(algorithm, enabled = true) {
module.exports = {
renderTemplate: renderTemplate,
pemToCert: pemToCert,
warnInsecureAlgorithm, warnInsecureAlgorithm
warnInsecureAlgorithm: warnInsecureAlgorithm
};
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "xml-encryption",
"version": "1.1.0",
"version": "1.1.1",
"devDependencies": {
"mocha": "^7.1.1",
"should": "^11.2.1"
Expand Down

0 comments on commit 30edc80

Please sign in to comment.