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

    Function defaultString

    • Returns an empty value if the given text is undefined

      Parameters

      • Optionaltext: null | string

        the text to check

      Returns string

      an empty value if the given text is undefined

      David Hsing

      defaultString(undefined);    // ''
      defaultString(null); // ''