function lower
lower(text: string): string

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

Examples

Example 1

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

Parameters

text: string

Return Type

string

Usage

import { lower } from ".";