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

    Function lower

    • Converts the string to lowercase. An alias for toLowerCase().

      Parameters

      • text: string

      Returns string

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

      lower(null); // ""
      lower("Hello WORLD"); // "hello world"