We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b40b16 commit 7e8936cCopy full SHA for 7e8936c
lib/util/createHash.js
@@ -40,7 +40,6 @@ class BulkUpdateDecorator {
40
module.exports = algorithm => {
41
switch(algorithm) {
42
// TODO add non-cryptographic algorithm here
43
- default:
44
- return new BulkUpdateDecorator(require("crypto").createHash(algorithm));
+ default: return new BulkUpdateDecorator(require("crypto").createHash(algorithm));
45
}
46
};
0 commit comments