@dotglitch/ngx-common 1.0.13 → 1.0.14

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.
@@ -1670,7 +1670,7 @@ class LazyLoaderComponent {
1670
1670
  // Download the "module" (the standalone component)
1671
1671
  const bundle = this.targetModule = await entry.load();
1672
1672
  // Check if there is some corruption on the bundle.
1673
- if (!bundle || typeof bundle != 'object' || bundle['__esModule'] !== true || bundle.toString() != "[object Module]") {
1673
+ if (!bundle || typeof bundle != 'object') {
1674
1674
  this.err(`Failed to load component/module for '${this._id}'! Parsed resource is invalid.`);
1675
1675
  return this.loadError();
1676
1676
  }