@stemy/ngx-utils 19.6.10 → 19.6.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -366,7 +366,7 @@ class ReflectUtils {
366
366
  if (!ObjectUtils.checkInterface(obj, { func: "function" }))
367
367
  return obj;
368
368
  const factory = obj;
369
- let depends = [];
369
+ let depends;
370
370
  if (factory.type) {
371
371
  const method = ObjectUtils.getProperties(factory.type).find(function (key) {
372
372
  return factory.type[key] === factory.func;