Skip to content

lowerCase

Transform a string to lowercase. This function is an alias of String.prototype.toLowercase().

Usage

js
import { 
lowerCase
} from '@studiometa/js-toolkit/utils';
lowerCase
('Some String Content'); // some string content

Params

  • string (string): The string to transform.

Return value

  • string: The transformed string.

MIT Licensed