Skip to content

Commit f97ebb9

Browse files
committed
Update hashing.js
1 parent 39d01f1 commit f97ebb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/lib/hashing.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Hashing {
1515
static hash(algorithm, text) {
1616
const hash = (0, crypto_1.createHash)(algorithm);
1717
hash.update(text);
18-
return hash.digest('hex').toUpperCase();
18+
return hash.digest('hex');
1919
}
2020
}
2121
exports.Hashing = Hashing;

0 commit comments

Comments
 (0)