diff options
Diffstat (limited to 'src/util/html.js')
-rw-r--r-- | src/util/html.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/util/html.js b/src/util/html.js index 3f89a280..63d7c1cf 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -126,13 +126,7 @@ export class Tag { } this.#content = contentArray - .flatMap(value => { - if (Array.isArray(value)) { - return value; - } else { - return [value]; - } - }) + .flat(Infinity) .filter(Boolean); this.#content.toString = () => this.#stringifyContent(); |