TESSA Web API
    Preparing search index...

    Class StringBuilder

    Класс для более эффективной конкатенации строк.

    const builder = new StringBuilder();
    const str = builder
    .add('Hello')
    .add(' world')
    .build(); // "Hello world";
    Index

    Constructors

    Accessors

    Methods

    Constructors

    Accessors

    • get empty(): boolean

      Returns boolean

    Methods

    • Parameters

      • str: string

      Returns this

    • Returns string