Merge branch 'master' into add-JSDoc-comments

This commit is contained in:
Matthew Nickson 2022-04-21 13:01:22 +01:00 committed by GitHub
commit 6d22ebedca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
185 changed files with 15986 additions and 5448 deletions

View file

@ -31,7 +31,7 @@ exports.verify = function (password, hash) {
* @returns {boolean}
*/
function isSHA1(hash) {
return (typeof hash === "string" && hash.startsWith("sha1"))
return (typeof hash === "string" && hash.startsWith("sha1"));
}
/**