@ts-core/angular 11.0.83 → 11.0.84

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.
@@ -4722,7 +4722,7 @@
4722
4722
  },] }
4723
4723
  ];
4724
4724
  function languageServiceFactory(cookie, options) {
4725
- if (options && !options.service) {
4725
+ if (!_.isNil(options) && _.isNil(options.service)) {
4726
4726
  options.service = cookie;
4727
4727
  }
4728
4728
  return new language.LanguageService(options);
@@ -7946,7 +7946,7 @@
7946
7946
  },] }
7947
7947
  ];
7948
7948
  function themeServiceFactory(cookie, options) {
7949
- if (!_.isNil(options) && !_.isNil(options.service)) {
7949
+ if (!_.isNil(options) && _.isNil(options.service)) {
7950
7950
  options.service = cookie;
7951
7951
  }
7952
7952
  return new theme.ThemeService(options);