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

    Function fromChars

    • Returns a string that represents the given string array

      Parameters

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

        the source strings to inspect

      Returns undefined | string

      a string that represents the given string array

      David Hsing

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