@angular/core 12.0.0-rc.3 → 12.0.0

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.0-rc.3
2
+ * @license Angular v12.0.0
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v12.0.0-rc.3
2
+ * @license Angular v12.0.0
3
3
  * (c) 2010-2021 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -22013,17 +22013,16 @@
22013
22013
  var Version = /** @class */ (function () {
22014
22014
  function Version(full) {
22015
22015
  this.full = full;
22016
- var _a = __read(full.split('.')), major = _a[0], minor = _a[1], rest = _a.slice(2);
22017
- this.major = major;
22018
- this.minor = minor;
22019
- this.patch = rest.join('.');
22016
+ this.major = full.split('.')[0];
22017
+ this.minor = full.split('.')[1];
22018
+ this.patch = full.split('.').slice(2).join('.');
22020
22019
  }
22021
22020
  return Version;
22022
22021
  }());
22023
22022
  /**
22024
22023
  * @publicApi
22025
22024
  */
22026
- var VERSION = new Version('12.0.0-rc.3');
22025
+ var VERSION = new Version('12.0.0');
22027
22026
 
22028
22027
  /**
22029
22028
  * @license