@unikue/ts-lang-utils
    Preparing search index...

    Function fromChars

    • Returns a string that represents the given string array

      Parameters

      • Optionaltexts: (string | null | undefined)[]

        The source strings to inspect

      Returns string | undefined

      a string that represents the given string array

      David Hsing

      fromChars(undefined);    // undefined
      fromChars(['f', 'o', 'o', 'b', 'a', 'r']); // 'foobar'