Skip to content

Commit

Permalink
Make eslint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
otacke authored Dec 20, 2024
1 parent f1ce7ae commit adc309f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/scripts/services/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ export default class Util {
typeof source[key] === 'object' && !Array.isArray(source[key])
) {
this.extend(target[key], source[key]);
} else if (Array.isArray(source[key])) {
}
else if (Array.isArray(source[key])) {
target[key] = source[key].slice();
} else {
}
else {
target[key] = source[key];
}
}
Expand Down

0 comments on commit adc309f

Please sign in to comment.