@bytebury/sauce - v1.13.0
    Preparing search index...

    Function title

    • Converts the string to Title Case. This will capitalize the letter of each word that is separated by a space. Underscores are considered spaces. Hyphens are respected.

      Parameters

      • text: string

      Returns string

      This is null | undefined safe. If you pass null | undefined then this will return "".

      title(null); // ""
      title("hello world"); // Hello World
      title("hello-world"); // Hello-world
      title("hello_world"); // Hello World
      title("HELLO wORLD"); // Hello World