@angular/ssr 22.0.6 → 22.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/ssr",
3
- "version": "22.0.6",
3
+ "version": "22.0.8",
4
4
  "description": "Angular server side rendering utilities",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -37,12 +37,12 @@
37
37
  },
38
38
  "devDependencies": {
39
39
  "@angular-devkit/schematics": "workspace:*",
40
- "@angular/common": "22.0.5",
41
- "@angular/compiler": "22.0.5",
42
- "@angular/core": "22.0.5",
43
- "@angular/platform-browser": "22.0.5",
44
- "@angular/platform-server": "22.0.5",
45
- "@angular/router": "22.0.5",
40
+ "@angular/common": "22.0.8",
41
+ "@angular/compiler": "22.0.8",
42
+ "@angular/core": "22.0.8",
43
+ "@angular/platform-browser": "22.0.8",
44
+ "@angular/platform-server": "22.0.8",
45
+ "@angular/router": "22.0.8",
46
46
  "@schematics/angular": "workspace:*",
47
47
  "beasties": "0.4.2"
48
48
  },
@@ -2059,7 +2059,7 @@ function requireNonSecure () {
2059
2059
  return (size = defaultSize) => {
2060
2060
  let id = '';
2061
2061
  let i = size | 0;
2062
- while (i--) {
2062
+ while (i-- > 0) {
2063
2063
  id += alphabet[(Math.random() * alphabet.length) | 0];
2064
2064
  }
2065
2065
  return id
@@ -2069,7 +2069,7 @@ function requireNonSecure () {
2069
2069
  let nanoid = (size = 21) => {
2070
2070
  let id = '';
2071
2071
  let i = size | 0;
2072
- while (i--) {
2072
+ while (i-- > 0) {
2073
2073
  id += urlAlphabet[(Math.random() * 64) | 0];
2074
2074
  }
2075
2075
  return id