Skip to content

Commit 30edc80

Browse files
authored
fix(utils): fix accidental duplicate export. (#70)
Fix for styling; no behavior impact.
1 parent 77efd10 commit 30edc80

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ function warnInsecureAlgorithm(algorithm, enabled = true) {
2828
module.exports = {
2929
renderTemplate: renderTemplate,
3030
pemToCert: pemToCert,
31-
warnInsecureAlgorithm, warnInsecureAlgorithm
31+
warnInsecureAlgorithm: warnInsecureAlgorithm
3232
};

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xml-encryption",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"devDependencies": {
55
"mocha": "^7.1.1",
66
"should": "^11.2.1"

0 commit comments

Comments
 (0)