Constructors
constructor
new Parser(html: string): Parser
Properties
Accessors
Methods
closeTag
closeTag(selfClose?: boolean): void Parameters
- selfClose: boolean = false
Returns void
expect
expect(value: string): void
expectedItemError
expectedItemError(expectedValue: string): void
isEndOfAttributes
isEndOfAttributes(): boolean
isSelfClosingTag
isSelfClosingTag(): boolean
iterate
iterate(fn: () => boolean): void
lookAhead
lookAhead(characterCount: number): string
openTag
openTag(tagName: string): void
parseAttribute
parseAttribute(): boolean
parseAttributeName
parseAttributeName(): string
parseAttributeValue
parseAttributeValue(): string
skip
skip(amount?: number): void
skipUntil
skipUntil(condition: () => boolean): string
throwError
throwError<T extends Error>(error: T): void