Skip to content

Commit

Permalink
Merge pull request #305 from fredericrous/patch-1
Browse files Browse the repository at this point in the history
lint πŸš€
  • Loading branch information
evanvosberg authored Nov 19, 2020
2 parents b529d90 + 1adcb50 commit 7f36db9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ var CryptoJS = CryptoJS || (function (Math, undefined) {

return subtype;
};
}())
}());

/**
* CryptoJS namespace.
Expand Down Expand Up @@ -288,8 +288,8 @@ var CryptoJS = CryptoJS || (function (Math, undefined) {
}
} else {
// Copy one word at a time
for (var i = 0; i < thatSigBytes; i += 4) {
thisWords[(thisSigBytes + i) >>> 2] = thatWords[i >>> 2];
for (var j = 0; j < thatSigBytes; j += 4) {
thisWords[(thisSigBytes + j) >>> 2] = thatWords[j >>> 2];
}
}
this.sigBytes += thatSigBytes;
Expand Down

0 comments on commit 7f36db9

Please sign in to comment.