(let category of [...pageCategories].sort())
| 460 | categories.push(category); |
| 461 | } else if (category === '...') { |
| 462 | for (let category of [...pageCategories].sort()) { |
| 463 | if (!CATEGORY_ORDER.includes(category)) { |
| 464 | categories.push(category); |
| 465 | } |
| 466 | } |
| 467 | } |
| 468 | } |
| 469 |
no test coverage detected