@angular/core 12.2.5 → 12.2.9
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.
- package/bundles/core-testing.umd.js +2 -2
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core.umd.js +14 -13
- package/bundles/core.umd.js.map +1 -1
- package/core.d.ts +11 -10
- package/core.metadata.json +1 -1
- package/esm2015/src/compiler/compiler_facade_interface.js +1 -1
- package/esm2015/src/di/injector.js +2 -2
- package/esm2015/src/di/reflective_injector.js +2 -2
- package/esm2015/src/i18n/locale_data_api.js +5 -4
- package/esm2015/src/i18n/tokens.js +6 -6
- package/esm2015/src/linker/component_factory_resolver.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/fesm2015/core.js +14 -13
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +1 -1
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v12.2.
|
|
2
|
+
* @license Angular v12.2.9
|
|
3
3
|
* (c) 2010-2021 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -656,7 +656,7 @@
|
|
|
656
656
|
ar[i] = from[i];
|
|
657
657
|
}
|
|
658
658
|
}
|
|
659
|
-
return to.concat(ar || from);
|
|
659
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
660
660
|
}
|
|
661
661
|
function __await(v) {
|
|
662
662
|
return this instanceof __await ? (this.v = v, this) : new __await(v);
|