UNPKG

yoastseo-dep

Version:

Yoast clientside page analysis

27 lines (24 loc) 764 B
import Node from "./Node"; /** * A heading in the tree. */ class Heading extends Node { /** * Creates a new heading. * * @param {1|2|3|4|5|6} level The heading level (e.g. `1` for `h1` up to `6` for `h6`). * @param {Object} attributes This heading's attributes. * @param {(Node|Text)[]} childNodes This heading's child nodes. * @param {Object} sourceCodeLocationInfo This heading's location in the source code, from parse5. */ constructor( level, attributes = {}, childNodes = [], sourceCodeLocationInfo = {} ) { super( `h${level}`, attributes, childNodes, sourceCodeLocationInfo ); /** * This heading's level (e.g. `1` for `h1`, `2` for `h2` etc.). * * @type {1|2|3|4|5|6} */ this.level = level; } } export default Heading;