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

    Function upper

    • Converts the string to uppercase. An alias for toUpperCase().

      Parameters

      • text: string

      Returns string

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

      upper(null); // ""
      upper("Hello world"); // "HELLO WORLD"