diff --git a/imports/helpers/utils.js b/imports/helpers/utils.js index 40f146ba9..8bee0e591 100644 --- a/imports/helpers/utils.js +++ b/imports/helpers/utils.js @@ -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) { @@ -10,5 +10,5 @@ export class Util { } } return target; - } -} + }; +};