(template)
| 1692 | * @returns {string} same template, or `[name].html` if it has no per-module placeholder |
| 1693 | */ |
| 1694 | const ensureUniqueHtmlTemplate = (template) => |
| 1695 | HAS_PATH_PLACEHOLDER_REGEXP.test(template) ? template : "[name].html"; |
| 1696 | F(output, "htmlFilename", () => { |
| 1697 | const filename = |
| 1698 | /** @type {NonNullable<Output["htmlFilename"]>} */ |
no test coverage detected