Skip to content

Commit

Permalink
fix(lodash): make method static
Browse files Browse the repository at this point in the history
  • Loading branch information
bubonicfred committed Jun 26, 2024
1 parent 3ff6142 commit 96005a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions imports/helpers/utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export class Util {
assignIn(target, ...sources) {
static assignIn(target, ...sources) {
const length = sources.length;
if (length < 1 || target == null) return target;
for (const source of sources) {
Expand All @@ -10,5 +10,5 @@ export class Util {
}
}
return target;
}
}
};
};

0 comments on commit 96005a9

Please sign in to comment.