Skip to content

Various breaking changes for next version #21

@lpatiny

Description

@lpatiny

Remove dynamicTypingAttributeValue

The implicit dynamic typing is done in the attributeValueProcessor

  attributeValueProcessor: (value: string) => parseString(value),

Remove dynamicTypingNodeValue

The implicit dynamic typing is done in the tagValueProcessor

 tagValueProcessor: (value: Uint8Array) => {
    const string = decoder.decode(value).replace(/\r/g, '');
    return parseString(string);
  }

Remove attributeNamePrefix

This can be done using the callback

attributeNameProcessor: (name: string) => `$${name}`,

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions