toLowerCase (Function)

Signature: toLowerCase(s: string) -> string

Description: ASCII-aware lowercase.

Parameters

  • s (string): The string to transform

Returns: string

Example

toLowerCase("HELLO")  // "hello"
toLowerCase "HELLO"  // "hello"