angular-three 1.9.8 → 1.9.10

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.
@@ -2780,13 +2780,13 @@ function createRunInContext() {
2780
2780
  envInjector.get = (...args) => {
2781
2781
  try {
2782
2782
  const originalFlags = args[2];
2783
- if (originalFlags === 0) {
2784
- args[2] = 8;
2783
+ if (!(originalFlags & 8)) {
2784
+ args[2] |= 8;
2785
2785
  }
2786
2786
  const fromEnvInjector = originalGet(...args);
2787
2787
  if (fromEnvInjector)
2788
2788
  return fromEnvInjector;
2789
- if (fromEnvInjector === null && ((args[1] !== undefined && args[1] === null) || originalFlags === 0))
2789
+ if (fromEnvInjector === null && ((args[1] !== undefined && args[1] === null) || originalFlags & 8))
2790
2790
  return fromEnvInjector;
2791
2791
  args[2] = originalFlags;
2792
2792
  if (!tryFromNodeInjector) {