Skip to content

Commit

Permalink
fix tests and codesmells
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Sep 13, 2023
1 parent 3e61b15 commit d7bd472
Show file tree
Hide file tree
Showing 3 changed files with 1,080 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helpers/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function isJsonObject(o) {
*/
function mergeInto(from, to) {
for (const key in from) {
if (!Object.prototype.hasOwnProperty.call(from, key)) {
if (!Object.hasOwn(from, key)) {
continue;
}
if (isJsonObject(from[key])) {
Expand Down
Loading

0 comments on commit d7bd472

Please sign in to comment.